3D sinus imaginary part
    2 views (last 30 days)
  
       Show older comments
    
    Levy Wiggelinkhuizen
 on 12 Feb 2019
  
    
    
    
    
    Commented: Levy Wiggelinkhuizen
 on 22 Feb 2019
            Hello fellow matlab users,
How can i build the following 3D sinus function?

Could somebody point me in the right direction.
Much appreciated!
0 Comments
Accepted Answer
  Jon Wieser
      
 on 12 Feb 2019
        
      Edited: madhan ravi
      
      
 on 13 Feb 2019
  
      This will get you started
[x,y]=meshgrid(-1:.1:1,-6:.1:6);
z=x.*sin(y);
surf(x,y,z)
More Answers (0)
See Also
Categories
				Find more on Surface and Mesh Plots in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
