Bar graph with unequal values.

5 ビュー (過去 30 日間)
Alexander Guillen
Alexander Guillen 2023 年 9 月 7 日
コメント済み: Alexander Guillen 2023 年 9 月 7 日
This is my code
clear all; close all; clc
a1 = [2 3 4 5 6];
a2 = 5;
b1 = [0.2 0.2 0.2 0.2 0.2];
b2 = 35;
bar(a1,b1)
hold on
bar(a2,b2)
At x = 5 ,the bar graph shows up as continous. Is there a way to to avoid this? I think this can be done by stacked but I am unsure.

採用された回答

Adam Danz
Adam Danz 2023 年 9 月 7 日
編集済み: Adam Danz 2023 年 9 月 7 日
Are you expecting to see a stacked bar plot?
a1 = [2 3 4 5 6];
b1 = [0.2 0.2 0.2 0.2 0.2];
b2 = [nan nan nan 35 nan];
bar(a1,[b1;b2],'stacked')
Or are you expecting to see two axes?
figure()
tiledlayout(2,1)
a1 = [2 3 4 5 6];
a2 = 5;
b1 = [0.2 0.2 0.2 0.2 0.2];
b2 = 35;
ax1 = nexttile();
bar(a1,b1)
ax2 = nexttile();
bar(a2,b2)
linkaxes([ax1,ax2],'x')
  1 件のコメント
Alexander Guillen
Alexander Guillen 2023 年 9 月 7 日
Yes that is what I am looking for. Thank you!

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by