ウェーブレットコヒーレンスの一部データを抽出する方法
Afficher commentaires plus anciens
2種類の周波数データx,yを下記関数にてウェーブレットコヒーレンス処理を実施した後、一部の周波数帯域(15-30Hz)のデータ抽出を試みています。
しかし、下記手順にて実施すると、下線部にてエラーが出てしまいます。
手順につき、ご教示頂ければ幸いです。
fs=1000; %サンプリング周波数
t=(1:length(wcoh)); %時間
indx_f = (f>=15)&(f<=30); % 周波数15-30Hz
frq = f(indx_f);
wcoh1 = wcoh(frq, :);
surface(t,frq,wcho1); %図
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur 連続ウェーブレット変換 dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!