필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 1 (최근 30일)
alaisya
alaisya 2017년 5월 9일
마감: MATLAB Answer Bot 2021년 8월 20일
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.
alaisya
alaisya 2017년 5월 9일
ok.. thank you very much.. finally i get data of coherence..thanks again..

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by