Problem with bar plot

1 回表示 (過去 30 日間)
Pablo Morcillo Pallarés
Pablo Morcillo Pallarés 2018 年 4 月 13 日
I was trying to make a plot bar as shown in the documentation web:
https://es.mathworks.com/help/matlab/ref/bar.html
c = categorical({'apples','pears','oranges'});
prices = [1.23 0.99 2.3];
bar(c,prices)
And in matlab 2018 works fine, but now i am trying that example with matlab 2014, and its not working... How can i plot a name for each one of the plots?
thanks in advance!
edit: the error message is this one:
Undefined function 'minus' for input arguments of type 'categorical'.
Error in bar (line 62) if any(sortedx(2:end)-sortedx(1:end-1) == 0)

採用された回答

dpb
dpb 2018 年 4 月 13 日
<Answer_259279> bar wasn't smartened-up enough to know about categorical variables for labels until later; not sure which release included it, but R2014b is too early.
  1 件のコメント
Pablo Morcillo Pallarés
Pablo Morcillo Pallarés 2018 年 4 月 13 日
thanks you!!! with the use of this line helps me a lot!
set(gca,'xticklabel',{'apples','oranges','pears'});

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBar Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by