How to display all figures

122 vues (au cours des 30 derniers jours)
Reyasudin
Reyasudin le 24 Juin 2013
Hello,
when I run my matlab m file. Only the last plotted figure displayed. May I know what should I do in order to display all figure plotted in the matlab script.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 24 Juin 2013
Modifié(e) : Azzi Abdelmalek le 24 Juin 2013
%each plot in one figure
figure(1)
plot(x1,y1)
figure(2)
plot(x2,y2)
%and so on
%All plot in one figure
figure
hold on
plot(x1,y1)
plot(x2,y2)
%and so o
  1 commentaire
Reyasudin
Reyasudin le 24 Juin 2013
ok tq.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by