필터 지우기
필터 지우기

Multiple plots in multiple figures in no specific order

조회 수: 2 (최근 30일)
Leon
Leon 2020년 5월 13일
답변: Ameer Hamza 2020년 5월 13일
Hello,
I am looking for way to have multiple plots in different figures but in no specific order in the program. So it could be as an example: first plot two graph in figure1 then three plots in figure 2 and then again four in figure 1, etc.
Any one have a suggestion/solution
Many thanks in advance

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 5월 13일
You can use combinations of figure() and subplot() to create multiple figure windows and axes() according to your requirement. For example
figure;
subplot(2,1,1)
plot(rand(1,10))
subplot(2,1,2)
plot(rand(1,10))
figure;
subplot(3,1,1)
plot(rand(1,10))
subplot(3,1,2)
plot(rand(1,10))
subplot(3,1,3)
plot(rand(1,10))
figure;
subplot(2,2,1)
plot(rand(1,10))
subplot(2,2,2)
plot(rand(1,10))
subplot(2,2,3)
plot(rand(1,10))
subplot(2,2,4)
plot(rand(1,10))

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by