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

6 ビュー (過去 30 日間)
john m
john m 2021 年 3 月 14 日
コメント済み: Star Strider 2021 年 3 月 15 日
how i do a 3D plot of rect(n1,n2) function
  1 件のコメント
Star Strider
Star Strider 2021 年 3 月 15 日
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.)

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

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 3 月 14 日
編集済み: KALYAN ACHARJYA 2021 年 3 月 14 日
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 件のコメント
john m
john m 2021 年 3 月 15 日
Is this the only way to plot a rectangular? Because i think there is (rect) function but you didn’t use it

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

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by