How do loop this data?

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

Answers (1)

that would be something along the lines of
for ind = 6:5:26
figure,plot(X(:,ind:ind+4));
end

This question is closed.

Asked:

on 26 Feb 2015

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!