How can I plot a 3D graph perspectivly?
이전 댓글 표시
Is it possible that I set the axis of the 3D graph more "perspective"? That's to say when the object is colser to the viewer, it looks bigger. And parallel lines in 3D may looks un-parallel. The following figure is plotted in Origin, and obviously it looks better.

채택된 답변
추가 답변 (2개)
KSSV
2016년 7월 22일
0 개 추천
You have to play around with xtick, ytick, ztick and view angle...it is very much possible.....
Allen Benjamin
2016년 7월 22일
You can use the axes projection property:
ax = axes;
ax.Projection = 'perspective';
댓글 수: 1
The marker sizes don't change for me with 'perspective'.
figure;
plot3(rand(1,10), rand(1,10), rand(1,10), 'ko')
ax = gca;
ax.Projection = 'perspective';
카테고리
도움말 센터 및 File Exchange에서 Axes Appearance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!