How to create a histogram for given data ??
Show older comments
Hi all! Let's say I have 2 set of numbers;
A = 3, 5, 7, 9
B = 2000, 2010, 2020, 2030
My question is how can I create a histogram such that A would be on the x-axis and B would be on the y-axis. Thanks.
3 Comments
dpb
on 29 Sep 2013
bar([2000:10:2030]',[3:2:9]')
maybe?
EMRE
on 29 Sep 2013
Image Analyst
on 29 Sep 2013
What do you want to take the histogram of? We were assuming that A was already the histogram - the counts - and that B was the bin centers.
Answers (1)
Wayne King
on 29 Sep 2013
As dpb has told you, use bar()
A = [3 5 7 9];
B = [2000 2010 2020 2030];
bar(A,B,'barwidth',0.4)
set(gca,'ylim',[1990 2050])
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!