% 练习3 第二题 x=-10:1:10; y=-10:1:10; [X,Y]=meshgrid(x,y); Z=sin(sqrt(X.^2+Y.^2))./(sqrt(X.^2+Y.^2)); surf(X,Y,Z)