Rotate X and Y axes with a bar3 plot
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
kortas manel
el 26 de Dic. de 2018
Comentada: Star Strider
el 27 de Dic. de 2018
Hello everybody,
I want to know how to rotate X and Y axes with a bar3 plot. Suppose that my data matrix is as follows : A=[3 5 7; 7 3 9; 5 2 1].
Instead of getting what bar3(A) provides, I want to get this:

Thanks.
0 comentarios
Respuesta aceptada
Star Strider
el 26 de Dic. de 2018
Try this:
A=[3 5 7; 7 3 9; 5 2 1];
figure
bar3(A)
view(32, 18)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D 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!