Filter Wavelet min/max frequencies
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Master1001
il 14 Ott 2019
Commentato: Master1001
il 6 Nov 2019
Dear Community,
I am analysing sound where the interesting things are in the ultraosund spectrum. I wanted to use wavelets to get some insights into the data.
However, 2/3 of the wavelet picture is focused on the uninteresting part (<10kHz), whereas the utrasound area gets a fraction of the attention.
Is there any chance I can specify, that the "music" is playing in certain frequency ranges? (e.g. above 40kHz or so)?
I use
cwt(x,fs);
to quickly display the wavelet.
Your answers are much appreciated!

0 Commenti
Risposta accettata
Roshni Garnayak
il 4 Nov 2019
You can use the Name-Value pair argument ‘FrequencyLimits’ to specify the range of frequencies you want to display. The value is specified as a two-element vector with positive strictly increasing entries.
You can use the following line of code where ‘minFreq’ and ‘maxFreq’ specifies the lower and upper limits of the frequency range:
cwt (x, fs, ‘FrequencyLimits’, [minFreq maxFreq]);
Please refer to the following link for more details on the usage of ‘FrequencyLimits’:
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Continuous Wavelet Transforms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!