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

 Réponse acceptée

Jon Wieser
Jon Wieser le 12 Fév 2019
Modifié(e) : madhan ravi le 13 Fév 2019

0 votes

This will get you started
[x,y]=meshgrid(-1:.1:1,-6:.1:6);
z=x.*sin(y);
surf(x,y,z)

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange

Produits

Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by