ウェーブレットコヒーレンスの一部データを抽出する方法
Show older comments
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); %図
Accepted Answer
More Answers (0)
Categories
Find more on 連続ウェーブレット変換 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!