How to plot a Bar Graph without a uniform spacing on the horizontal axis
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tarek Hajj Shehadi
el 10 de Mayo de 2021
Comentada: Tarek Hajj Shehadi
el 10 de Mayo de 2021
Hello, suppose I have a bar graph where I am testing some data with How can I have these four values spaced equally on the horizotnal axis?
0 comentarios
Respuesta aceptada
KSSV
el 10 de Mayo de 2021
Editada: KSSV
el 10 de Mayo de 2021
You can plot the values by index and show the respective values uisng text.
Example:
x = [5 10 100 1000] ;
y = rand(size(x)) ;
bar(y)
text(1:length(x),y,num2str(x'),'vert','bottom','horiz','center');
Or, use xticklabels and show the values at the x-axes.
Example:
x = [5 10 100 1000] ;
y = rand(size(x)) ;
bar(y)
xticklabels(x)
Más respuestas (0)
Ver también
Categorías
Más información sobre Graph and Network Algorithms 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!