Info

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

How do loop this data?

조회 수: 1 (최근 30일)
Matthew Woolaway
Matthew Woolaway 2015년 2월 26일
마감: MATLAB Answer Bot 2021년 8월 20일
figure plot(X(:,6:10)) figure plot(X(:,11:15)) figure plot(X(:,16:20)) figure plot(X(:,21:25)) figure plot(X(:,26:30))

답변 (1개)

Joseph Cheng
Joseph Cheng 2015년 2월 26일
that would be something along the lines of
for ind = 6:5:26
figure,plot(X(:,ind:ind+4));
end

Community Treasure Hunt

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

Start Hunting!

Translated by