求matlab里画y=((sin x)⼀x)*((sin y)⼀y)的图像的代码 x,y的范围都是-10到10 急,拜托!

写错了,是z=((sin x)⼀x)*((sin y)⼀y),是个二元函数。
2025-02-22 12:02:16
推荐回答(1个)
回答1:

 [x,y]=meshgrid(-10:0.1:10);
 z=((sin(x))./x).*((sin(y))./y);
 mesh(x,y,z)