How to save data coherence in matlab by using fprintf from the given coding?
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
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.
alaisya
2017 年 5 月 9 日
回答 (0 件)
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!