How to plot a BAR chart

4 views (last 30 days)
Atom
Atom on 15 Jun 2013
How to plot a BAR chart with the following data
X: 28-30 22-27 13-21 8-12 4-7
Y: 3 16 70 8 3

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 15 Jun 2013
X= {'28-30' '22-27' '13-21' '8-12' '4-7'}
Y=[ 3 16 70 8 3]
bar(Y)
set(gca,'xticklabel',X)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!