Superposing multiple 3d plots

15 ビュー (過去 30 日間)
Anshuman Pal
Anshuman Pal 2021 年 8 月 22 日
コメント済み: Anshuman Pal 2021 年 8 月 23 日
Hello,
To superpose 2d plots, I just use the command `hold on` before plotting. However, when I try using this with 3d plots `plot3()`, I get a 2d projection of the superposed plots, instead of getting a 3d plot. What is going on?
Example syntax:
figure
plot3(x,y,z,'k.-')
gives me a 3d plot as expected. However, adding a point at the origin:
figure; hold on
plot3(rx,ry,rz,'k.-')
plot3(0,0,0,'ro')
gives a flat 2d image. Am I typing something wrong? Thank you.

採用された回答

DGM
DGM 2021 年 8 月 22 日
You should be able to get the 3D view back by just specifying it explicitly after the plotting is done.
view(3)
  1 件のコメント
Anshuman Pal
Anshuman Pal 2021 年 8 月 23 日
Yes it worked. But I don't understand what happened. What does `view(3)` do?

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by