Having trouble getting 3D plots into the kind of orintation where the x-axis is horizontal, z-axis is vertical and y is angled into the page, shown in the following diagram. The i have tried the view function and messed with camera angles somewhat, any suggestions is welcomed thanks
Screen Shot 2019-04-15 at 2.23.07 AM.png

댓글 수: 3

madhan ravi
madhan ravi 2019년 4월 14일
편집: madhan ravi 2019년 4월 14일
view(2) %?
view([0,45])
John Xing
John Xing 2019년 4월 14일
That doesn't keep the x-axis hoizontal.
Xiao Yang
Xiao Yang 2019년 12월 28일
Hi John,
I am having the same problem as you. Have you figured out a way to achieve this?
Thank you!

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2019년 4월 14일

0 개 추천

You will not be able to achieve that using view() alone. In order to keep the X axis horizontal while having the Y axis angled, you need a sheer transform, which view() does not provide (view provides rotations.)
You might be able to achieve it by manipulating the low-level camera properties https://www.mathworks.com/help/matlab/creating_plots/low-level-camera-properties.html such as CameraPosition and CameraTarget .
Otherwise, you might have to proceed by parenting the surface to a hgtransform group and setting the transform matrix to appropriate angle and sheer. makehgtform() can help in setting up the right transform matrix. However, I am presently not confident that you can get the axes box at the desired angle unless you draw it yourself.

카테고리

질문:

2019년 4월 14일

댓글:

2019년 12월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by