Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How do loop this data?

1 visualización (últimos 30 días)
Matthew Woolaway
Matthew Woolaway el 26 de Feb. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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))

Respuestas (1)

Joseph Cheng
Joseph Cheng el 26 de Feb. de 2015
that would be something along the lines of
for ind = 6:5:26
figure,plot(X(:,ind:ind+4));
end

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by