Azzera filtri
Azzera filtri

Bar width according to a duration type data in a bar graph

1 visualizzazione (ultimi 30 giorni)
Hello everyone.
I have a bar graph which looks like this..
What I would like to do is modify this bar graph, so that each column gets a specific width according to a time interval (duration) that I have stored in a vector.
Other than that I wonder how can I insert a duration type vector in the x - axis of a bar graph, since what you see in this image are only xticks and xlabels of a specific istant of time of that duration time vector.
To sum up what I would like to obtain, is a bar graph like this, but on the x - axis there is a duration type data, and the column width corresponds to specific duration time intervals.
Thank you in advance, if I wasn't clear I can upload my code anytime.

Risposte (1)

Chunru
Chunru il 12 Nov 2021
Modificato: Chunru il 12 Nov 2021
x = 1:10; % x data
y = randi(10, size(x)); % y data
w = rand(size(x))/2; % width
for i =1 : numel(x)
bar(x(i), y(i), w(i), 'b');
if i==1, hold on; end
end
  2 Commenti
Pietro Fedrizzi
Pietro Fedrizzi il 12 Nov 2021
Thanks for answering, I understand now how to obtain different widths, but how do I implement this in my code where w(i) should be a duration time array? I'm still getting trouble...
Chunru
Chunru il 12 Nov 2021
Without providing data and your code, it is diffficult to give more help.

Accedi per commentare.

Categorie

Scopri di più su Graphics Object Properties in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by