Effacer les filtres
Effacer les filtres

code for plotting more than one histogram in MATLAB

35 vues (au cours des 30 derniers jours)
Oluwaseun
Oluwaseun le 26 Sep 2011
Hi; I am new to MATLAB and i have this question to ask: is it possible for one to write a code in MATLAB such that different histograms(say more than two) are plotted and shown on the screen at the same time?
Thank you in anticipation of your response.
Simon.

Réponses (1)

Aurelien Queffurust
Aurelien Queffurust le 26 Sep 2011
subplot should achieve what you want :
x = -4:0.1:4;
y = randn(1000,2);
figure
subplot(2,1,1)
hist(y(:,1),x)
subplot(2,1,2)
hist(y(:,2),x)
  1 commentaire
Mauricio Cabrera
Mauricio Cabrera le 3 Nov 2021
Gracias me ayudo, cabe destacar que ahora la función hist() se está actualizando por histrogram(). Saludos.

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by