Plane Perpendicualr to an axis

1 visualización (últimos 30 días)
Manuel Ferreira
Manuel Ferreira el 21 de Dic. de 2020
Respondida: Shraddha Jain el 24 de Dic. de 2020
Hey, how do I plot plane ortogonal to an an axis, in a 3D system.
For example, a plane that is defined by .
  4 comentarios
James Tursa
James Tursa el 21 de Dic. de 2020
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 el 21 de Dic. de 2020
I want to graph a plane on top of that plot

Iniciar sesión para comentar.

Respuesta aceptada

Shraddha Jain
Shraddha Jain el 24 de Dic. de 2020
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!

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by