Making graph at the every for loop

1 次查看(过去 30 天)
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 个评论
uzzi
uzzi 2022-11-1
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

请先登录,再进行评论。

回答(1 个)

Star Strider
Star Strider 2020-10-20
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 个评论
uzzi
uzzi 2022-11-1
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

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by