how to open 3D figure always from the same angle (not the angle it appears rn)?

12 ビュー (過去 30 日間)
Hi guys and girls,
I'm pretty new to MatLab and i'm stuck. How can i open my 3D- rigidBodyTree from a different point of view than it is right now?
Is there an option f.e. that i can rotate die figure, then kinda "save" it and MatLab always opens the Figure from that position/angle?
Thanks a lot!

採用された回答

Vilém Frynta
Vilém Frynta 2022 年 11 月 22 日
編集済み: Vilém Frynta 2022 年 11 月 22 日
When you are rotating the figure manually, there will be current azimut and elevation displayed. You need to click the "cube + arrow" icon first.
As my explanation is not the best, I have made screenshot for you to understand easier:
You can write down these numbers and then use them to manually set your desired angle by view(azimut, elevation).
Examples of default angle and edited angle below:
% Default angle
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z)
colormap gray
% Edited angle
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z)
colormap gray
view(-23,28) % setting the azimut and elevation from the numbers
  1 件のコメント
moinmoinnoob69
moinmoinnoob69 2022 年 11 月 27 日
Thank you :)
I've already tried to change camera position and so on that is kinda works, but your way is way easier :D

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by