Histogram of several parameters

2 views (last 30 days)
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

Accepted Answer

Raghav Gnanasambandam
Raghav Gnanasambandam on 12 Jan 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)
  1 Comment
ZAFIMANDIMBY Mampiandra Ny Hanitra
Thank you very much. That is really what I want to get. It was really helpful.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!