Plotting combined and separated graphs for nested for loops

Hi! I wanna plot multiple graphs that combine information from the first for loop but make a new plot for the second for loop
For example:
for n = 2:10
for j = 1:10
plot(x,y(:,n,j));
end
end
I'd like it to combine the graphs for j but seperate it for n
Any help is appreciated!
Thank you!

 採用された回答

Chunru
Chunru 2021 年 12 月 1 日

0 投票

for n = 2:10
figure; hold on
for j = 1:10
plot(x,y(:,n,j));
end
hold off
end

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

製品

リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by