simple cwt (continuous wavelet transform) axis question
2 views (last 30 days)
Show older comments
Let's load a dataset and do a cwt on it, where the dataset is a fairly sinusoidal signal with a max amplitude x. I can do cwt by the following:
----------------------------------------------
man_scale = 1:4:2048;
coefs_pp = cwt(data,man_scale,'gaus8');
----------------------------------------------
I'm only interested in picking out a particular frequency, so I find the array position corresponding to my wanted frequency, and then have:
-----------------------------------
interest = data(array_position,:);
-----------------------------------
My question is simple: What are the units of the resulting variable "interest"?
The values that I get from this don't match at all with the range of "data" (over an order of magnitude different). Not quite sure where it's pulling the values from.
Thanks in advance,
0 Comments
Answers (1)
Ashish Uthama
on 6 Jul 2011
interest = data(chosen_scale,:);
I would just think of 'interest' as a measure of similarity of the wavelet at 'chosen_scale' scale at each point in the 'data' array. As the terminology suggests, they are 'coefficients' and as such might not have units associated with them.
From the CWT equation, you might see that the range of magnitudes of the coefficients depends on the signal and the range of the mother wavelet at a given scale.
0 Comments
See Also
Categories
Find more on Continuous Wavelet Transforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!