Multiple plots in multiple figures in no specific order

9 次查看(过去 30 天)
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))

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by