Continuous Wavelet Analysis without COI
2 次查看(过去 30 天)
显示 更早的评论
I'm doing some wavelet analysis on a signal, but I really dont want the COI line on the plot. Any advice on how to get rid of it?
0 个评论
回答(1 个)
Wayne King
2018-6-14
Hi Evan, the CWT outputs everything you need to do the plot with the cone of influence.
For example:
load kobe;
% The sampling frequency is 1 Hz
[wt,f] = cwt(kobe,1);
t = 0:numel(kobe)-1;
hp = pcolor(t,f,abs(wt));
hp.EdgeColor = 'none';
xlabel('Seconds');
set(gca,'yscale','log');
ylabel('Hz');
Hope that helps
另请参阅
类别
在 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!