3D Bar on long data

2 次查看(过去 30 天)
Bruno
Bruno 2017-7-21
评论: Bruno 2017-7-24
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

回答(1 个)

Ankitha Kollegal Arjun
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');
  1 个评论
Bruno
Bruno 2017-7-24
Thanks, for your answer, I resolved the problem: I specified the Axis limits and scaling.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by