Effacer les filtres
Effacer les filtres

Bar graph with unequal values.

1 vue (au cours des 30 derniers jours)
Alexander Guillen
Alexander Guillen le 7 Sep 2023
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.

Réponse acceptée

Adam Danz
Adam Danz le 7 Sep 2023
Modifié(e) : Adam Danz le 7 Sep 2023
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 commentaire
Alexander Guillen
Alexander Guillen le 7 Sep 2023
Yes that is what I am looking for. Thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by