create figure with multiple bars
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Brave A
el 14 de Abr. de 2019
Editada: Walter Roberson
el 14 de Abr. de 2019
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/213706/image.png)
I need code represent same this figure.
thanks in advance!
0 comentarios
Respuesta aceptada
Walter Roberson
el 14 de Abr. de 2019
bar() with 'stacked' option or 'Horizontal'. text() the labels you want into place. "hold on" and bar() again for the JAMA entry; you might need to use the 'baseline' property for it. It might be easier to just use fill() to draw the JAMA box.
2 comentarios
Walter Roberson
el 14 de Abr. de 2019
Editada: Walter Roberson
el 14 de Abr. de 2019
vals = [46.535 42.967 31.798 29.526 31.086 32.626 40.899 66.560 158.890 548.002];
bar(vals, 'horizontal', true, 'barwidth', 1);
yticklabels({'2048', '1024', '512', '256', '128', '64', '32', '16', '1:8', '1:4', ''})
Más respuestas (0)
Ver también
Categorías
Más información sobre Printing and Saving 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!