Making graph at the every for loop

2 ビュー (過去 30 日間)
Najam us Saqib Fraz
Najam us Saqib Fraz 2020 年 10 月 20 日
コメント済み: uzzi 2022 年 11 月 1 日
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 Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by