Continuous Wavelet Analysis without COI
이전 댓글 표시
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?
답변 (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
댓글 수: 1
Atik Faysal
2021년 1월 6일
Thank you for the great help.
카테고리
도움말 센터 및 File Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!