Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to save data coherence in matlab by using fprintf from the given coding?
1 回表示 (過去 30 日間)
古いコメントを表示
fs=1000;
xn=importdata('alphaO1.txt');
yn=importdata('deltaCz.txt');
mscohere(xn,yn,[],[],[],fs);
ylim([0 1]);
xlim([0 500]);
2 件のコメント
Walter Roberson
2017 年 5 月 9 日
Change
mscohere(xn,yn,[],[],[],fs);
to
cxy = mscohere(xn,yn,[],[],[],fs);
then run the code. When it finishes, tell us what
size(cxy)
shows.
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!