Rotating 3-D Histogram
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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
Antworten (2)
Henry Giddens
am 5 Sep. 2016
How about:
view(gca,[0 90])
% or
ax = gca;
ax.View = [0 90];
Henry
0 Kommentare
Steven Lord
am 6 Sep. 2016
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.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!