Hello fellow matlab users,
How can i build the following 3D sinus function?
Could somebody point me in the right direction.
Much appreciated!

 采纳的回答

Jon Wieser
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 个)

类别

产品

版本

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by