フィルターのクリア

How to plot projections of plot3(X,Y,Z) on same 3D graph

27 ビュー (過去 30 日間)
Dimitar
Dimitar 2014 年 2 月 11 日
コメント済み: Qun Wu 2017 年 5 月 23 日
How can I plot on same 3D graph of plot3, the projections on XY and so on.
X Y Z are vectors similar to the matlab example http://www.mathworks.com/help/matlab/ref/plot3.html .
I would like the projections to be on the walls xy xz .. planes like shadows. Similar to what contour plot is doing for 3D surface plots.

回答 (1 件)

Walter Roberson
Walter Roberson 2014 年 2 月 11 日
Depending on how your X and Y are structured, you may wish to consider using meshc
Are the points in a rectangular grid or are they scattered?
  2 件のコメント
Walter Roberson
Walter Roberson 2014 年 2 月 11 日
編集済み: Walter Roberson 2014 年 2 月 11 日
I see that you adjusted the question to indicate the the inputs are vectors, presumably not happening to fall into a nice grid.
In such a case:
subplot(1,3,1);
plot3(X, Y, 0*Z); %projection from Z+
subplot(1,3,2);
plot3(X, 0*Y, Z); %projection from Y-
subplot(1,3,3);
plot3(0*X, Y, Z); %projection from X+
I might have the "Y-" wrong.
Qun Wu
Qun Wu 2017 年 5 月 23 日
Someone owns you a 'Thank you', I guess.

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

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by