how i do a 3D plot of rect(n1,n2) function
Afficher commentaires plus anciens
how i do a 3D plot of rect(n1,n2) function
1 commentaire
Star Strider
le 15 Mar 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.)
Réponses (1)
KALYAN ACHARJYA
le 14 Mar 2021
Modifié(e) : KALYAN ACHARJYA
le 14 Mar 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 commentaire
john m
le 15 Mar 2021
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!