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일

0 개 추천

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