Rotating 3-D Histogram

3 次查看(过去 30 天)
Daniel Lee
Daniel Lee 2016-9-5
I was wondering how I could rotate figures from 3-D histogram in matlab such that it would look like the image I posted above:
I want to be able to see the grid with colors, without having to do it manually in the figure window. Thanks

回答(2 个)

Henry Giddens
Henry Giddens 2016-9-5
How about:
view(gca,[0 90])
% or
ax = gca;
ax.View = [0 90];
Henry

Steven Lord
Steven Lord 2016-9-6
If you're using the histogram2 function set the DisplayStyle property to 'tile'. See the "Tiled Histogram View" example on that page for more information.

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by