Using listdlg along with case statement

Ive used the listdlg along with the case statements so the user can plot two bars graphs.Ive used 'hold on' and 'hold off statements to plot two bar graphs ontop of eachother. However the bar graphs seem to shift to the right one place?Also any idea how to seperate the colours like 'e','f','g', for some reason the colours dont seperate for the first three bars.

 採用された回答

VBBV
VBBV 2022 年 12 月 1 日
編集済み: VBBV 2022 年 12 月 1 日

0 投票

A = [15 22 25 17 7 3 2 2];
B = [17 23 27 15 5 2 1 1];
% ---^^^^^^^^ these values in B are higher compared to A
length(B)
ans = 8
length(A)
ans = 8
X = 1:8; %
bar(X,A,'g'); %
hold on
bar(X,B,'r') %
xticklabels({'A*','A','B','C','D','E','F','G'}); % ensure ticklabels count and ticks are equal
ylim([0 30])

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeApp Building についてさらに検索

タグ

質問済み:

2022 年 12 月 1 日

編集済み:

2022 年 12 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by