Plot the values between the range
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Gopalakrishnan venkatesan
el 25 de Nov. de 2015
Comentada: Mike Garrity
el 30 de Nov. de 2015
I need to plot the values between the range using the bar plot ?
for example
Bar A 10-15
Bar B 25-30
Bar C 45-50
How can i do this ?
Thanks a lot
0 comentarios
Respuesta aceptada
Thorsten
el 25 de Nov. de 2015
h = bar([10 25 45; 5 5 5]', 'stacked');
set(h(1), 'FaceColor', 'w', 'EdgeColor', 'w')
2 comentarios
Mike Garrity
el 30 de Nov. de 2015
Instead of setting FaceColor and EdgeColor to white, try setting Visible to off.
set(h(1), 'Visible','off')
Más respuestas (0)
Ver también
Categorías
Más información sobre Discrete Data Plots 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!