Error using bar (line 172) X must be same length as Y.

3 views (last 30 days)
i am trying to plot a bar graph as illustrated in https://nl.mathworks.com/help/matlab/ref/bar.html
with the example code:
x = 1990;
y = [10 20 30];
bar(x,y)
but I got the error as menitioned in the Title.
is there any solution for it?
  3 Comments
Tim Boxall
Tim Boxall on 12 Mar 2021
Same for me, using R2017b. I copied the example code exactly and got the same error.
hicham oufettoul
hicham oufettoul on 19 Mar 2022
Hi dear brother I hope you find the answer, if yes let me know it please, and thank you

Sign in to comment.

Answers (1)

Stephan
Stephan on 17 Aug 2020
Transpose y:
x = 1990;
y = [10 20 30]';
bar(x,y)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!