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