simple cwt (continuous wavelet transform) axis question
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Ashish Uthama
2011-7-6
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Continuous Wavelet Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!