how i do a 3D plot of rect(n1,n2) function

how i do a 3D plot of rect(n1,n2) function

1 comentario

Star Strider
Star Strider el 15 de Mzo. de 2021
Please provide the documentatiion link to that function. (It is not present in the online documentation, and I cannot find it in an Interweb search.)

Iniciar sesión para comentar.

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 14 de Mzo. de 2021
Editada: KALYAN ACHARJYA el 14 de Mzo. de 2021
n1=-1;
n2=1;
[x,y]=meshgrid(n1:0.01:n2,n1:0.01:n2);
z=zeros(size(x,1),size(x,2));
z(x>-0.5 & x<0.5)=1;
s=surf(x,y,z,'FaceAlpha',0.5);
s.EdgeColor = 'b';

1 comentario

john m
john m el 15 de Mzo. de 2021
Is this the only way to plot a rectangular? Because i think there is (rect) function but you didn’t use it

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 14 de Mzo. de 2021

Comentada:

el 15 de Mzo. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by