3D sinus imaginary part
1 回表示 (過去 30 日間)
古いコメントを表示
Levy Wiggelinkhuizen
2019 年 2 月 12 日
コメント済み: Levy Wiggelinkhuizen
2019 年 2 月 22 日
Hello fellow matlab users,
How can i build the following 3D sinus function?

Could somebody point me in the right direction.
Much appreciated!
0 件のコメント
採用された回答
Jon Wieser
2019 年 2 月 12 日
編集済み: madhan ravi
2019 年 2 月 13 日
This will get you started
[x,y]=meshgrid(-1:.1:1,-6:.1:6);
z=x.*sin(y);
surf(x,y,z)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!