Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
Pietro Fedrizzi
Pietro Fedrizzi el 11 de Nov. de 2021
Comentada: Chunru el 12 de Nov. de 2021
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.

Respuestas (1)

Chunru
Chunru el 12 de Nov. de 2021
Editada: Chunru el 12 de Nov. de 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 comentarios
Pietro Fedrizzi
Pietro Fedrizzi el 12 de Nov. de 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 el 12 de Nov. de 2021
Without providing data and your code, it is diffficult to give more help.

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Object Properties en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by