How can I display a bar chart ?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mallouli Marwa
le 18 Juin 2019
Commenté : Mallouli Marwa
le 20 Juin 2019
Hi
How can I display a bar chart like the attached one ?
Best regards.
0 commentaires
Réponse acceptée
Aravind Ravikumar
le 19 Juin 2019
3 commentaires
Aravind Ravikumar
le 19 Juin 2019
x = [3 4;1.5 1.75;0.25 0.3];
bar(x,'hist');
legend('PZT','MFC');
set(gca,'xticklabel',{'20Hz','30Hz','40Hz'});
This code will produce bar graph like the attached image. gca will select the current axes and then you could specify the xticklabel for the bar graph.
Plus de réponses (1)
the cyclist
le 18 Juin 2019
3 commentaires
the cyclist
le 19 Juin 2019
I suggest you take a look at the MATLAB Plot Gallery, which has examples of lots of plot types, along with the code that produces them. This may save you time asking about everything small addition that you want, one at a time.
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!