Making graph at the every for loop

1 visualización (últimos 30 días)
Najam us Saqib Fraz
Najam us Saqib Fraz el 20 de Oct. de 2020
Comentada: uzzi el 1 de Nov. de 2022
I have a for loop,which runs for 14 times.After the end of each loop it produces a plot,which means that whole program produces 14 plots.I don't want 14 plot,but each line on single graph.A one plot that have 14 lines at it.
  1 comentario
uzzi
uzzi el 1 de Nov. de 2022
Dear Najam us Saqib Franz,
I am creating a loop eveery 6000 rows from my table and creating a plot for each loop. Can you help me with the looping code, please? I attached my quesstion below.
https://de.mathworks.com/matlabcentral/answers/1837548-repetitively-running-the-code-and-selectively-plotting?s_tid=prof_contriblnk

Iniciar sesión para comentar.

Respuestas (1)

Star Strider
Star Strider el 20 de Oct. de 2020
First, if you are defining each plot in a separate figure, remove the figure call in the loop and put it before the loop.
Just after the figure call before the loop, use the hold function:
figure
hold on
for ...
...
end
hold off
legend
or something similar.
That should do what you want.
  1 comentario
uzzi
uzzi el 1 de Nov. de 2022
Dear Star Strider,
I am creating a loop eveery 6000 rows from my table and creating a plot for each loop. Can you help me with the looping code, please? I attached my question below.
https://de.mathworks.com/matlabcentral/answers/1837548-repetitively-running-the-code-and-selectively-plotting?s_tid=prof_contriblnk

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by