Effacer les filtres
Effacer les filtres

Continuous Wavelet Analysis without COI

5 vues (au cours des 30 derniers jours)
Evan Grimes
Evan Grimes le 12 Juin 2018
Commenté : Atik Faysal le 6 Jan 2021
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?

Réponses (1)

Wayne King
Wayne King le 14 Juin 2018
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 commentaire
Atik Faysal
Atik Faysal le 6 Jan 2021
Thank you for the great help.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Continuous Wavelet Transforms dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by