MATLAB case three

x=-8:0.5:8;
y=x;
[X,Y]=meshgrid(x,y);
R=sqrt(X.2+Y.2)+eps;
Z=2*sin®./R;
surf(X,Y,Z)
grid on
shading faceted
shading interp
shading fla
Insert picture description here

Guess you like

Origin blog.csdn.net/m0_38127487/article/details/115033951