Rotating 3-D Histogram
이전 댓글 표시

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
2016년 9월 5일
How about:
view(gca,[0 90])
% or
ax = gca;
ax.View = [0 90];
Henry
Steven Lord
2016년 9월 6일
0 개 추천
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.
카테고리
도움말 센터 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!