Continuous Wavelet Analysis without COI

8 ビュー (過去 30 日間)
Evan Grimes
Evan Grimes 2018 年 6 月 12 日
コメント済み: Atik Faysal 2021 年 1 月 6 日
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
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
Atik Faysal 2021 年 1 月 6 日
Thank you for the great help.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeContinuous Wavelet Transforms についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by