Azzera filtri
Azzera filtri

Multiple plots in multiple figures in no specific order

1 visualizzazione (ultimi 30 giorni)
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

Risposte (1)

Ameer Hamza
Ameer Hamza il 13 Mag 2020
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))

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by