필터 지우기
필터 지우기

Plotting combined and separated graphs for nested for loops

조회 수: 1 (최근 30일)
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일
for n = 2:10
figure; hold on
for j = 1:10
plot(x,y(:,n,j));
end
hold off
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Title에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by