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
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!

Translated by