Error using bar (line 172) X must be same length as Y.
Show older comments
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
Saif Addeen Al-Manaseer
on 17 Aug 2020
I have the same problem, using MATLAB R2018a. It does not make any sense for an example code not to work!
Tim Boxall
on 12 Mar 2021
Same for me, using R2017b. I copied the example code exactly and got the same error.
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
Answers (1)
Stephan
on 17 Aug 2020
Transpose y:
x = 1990;
y = [10 20 30]';
bar(x,y)
1 Comment
Tim Boxall
on 12 Mar 2021
This didn't make any difference for me.
Categories
Find more on Annotations 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!