フィルターのクリア

Plane Perpendicualr to an axis

2 ビュー (過去 30 日間)
Manuel Ferreira
Manuel Ferreira 2020 年 12 月 21 日
回答済み: Shraddha Jain 2020 年 12 月 24 日
Hey, how do I plot plane ortogonal to an an axis, in a 3D system.
For example, a plane that is defined by .
  4 件のコメント
James Tursa
James Tursa 2020 年 12 月 21 日
You want to graph a 3D plane superimposed on top of another image/plot? Take a slice of that plane through the other image/plot? Or ...?
Manuel Ferreira
Manuel Ferreira 2020 年 12 月 21 日
I want to graph a plane on top of that plot

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

採用された回答

Shraddha Jain
Shraddha Jain 2020 年 12 月 24 日
Hi Manuel,
Given below is a sample code to plot a plane in 3-D defined at ,
[y z] = meshgrid(-1:0.1:1);
x = 3/2*ones(size(y));
surf(x,y,z)
You may superimpose this plane onto any other surface plot using hold on. To adjust the transparency of the plane appropriately set the alpha value after the surf command. Hope this helps!

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by