Histogram of several parameters
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ZAFIMANDIMBY Mampiandra Ny Hanitra
il 12 Gen 2021
Commentato: ZAFIMANDIMBY Mampiandra Ny Hanitra
il 12 Gen 2021
Good morning all.
Can anybody helps me by giving a code for comparison histogram of several parameters in Matlab.
Attached is a result picture as example

Thank you very much
2 Commenti
Raghav Gnanasambandam
il 12 Gen 2021
I guess you are asking about bar graph. Have a look at this - https://www.mathworks.com/help/matlab/ref/bar.html
Risposta accettata
Raghav Gnanasambandam
il 12 Gen 2021
Say for example you have the data (count) as
Parameter A - 130, Parameter B - 50, Parameter C - 40, Parameter D - 20, Parameter E - 10
x = categorical({'Parameter A','Parameter B','Parameter C','Parameter D','Parameter E'});
y = [130,50,40,20,10];
bar(x,y)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!