Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How to save data coherence in matlab by using fprintf from the given coding?

1 view (last 30 days)
fs=1000;
xn=importdata('alphaO1.txt');
yn=importdata('deltaCz.txt');
mscohere(xn,yn,[],[],[],fs);
ylim([0 1]);
xlim([0 500]);
  2 Comments
Walter Roberson
Walter Roberson on 9 May 2017
Change
mscohere(xn,yn,[],[],[],fs);
to
cxy = mscohere(xn,yn,[],[],[],fs);
then run the code. When it finishes, tell us what
size(cxy)
shows.

Answers (0)

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!