3D Bar on long data
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I tried to plot 3d bar plot on long data, I am getting an empty figure:
data=5000x3; % data matrix
Y=[2 4 6]; % The positions of bars along the y axis
hBar = bar3(Y, data'); % Create the bar graph
0 comentarios
Respuestas (1)
Ankitha Kollegal Arjun
el 24 de Jul. de 2017
I get the attached figure when I execute the following snippet of code:
data = randi(5000,3);
y = [2 4 6];
hbar = bar3(y,data');
Ver también
Categorías
Más información sobre Annotations 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!