figure(1)
u=-0.1:0.005:0.1;
v=-0.1:0.005:0.1;
[x,y]=meshgrid(u,v);

z=sin(x-y)./abs(x)+abs(y);
surf(x,y,z);
hold on
% contourf(x,y,z)
% ezplot('x+y=3')
% set(gca,'DataAspectRatio',[1 1 60])
%axis equal
View Code

相关文章:

  • 2021-06-29
  • 2021-12-02
  • 2021-10-20
  • 2021-12-06
  • 2021-04-30
  • 2021-12-09
  • 2021-04-04
  • 2022-12-23
猜你喜欢
  • 2021-12-06
  • 2021-11-18
  • 2021-10-09
  • 2022-12-23
  • 2021-06-24
  • 2022-01-11
相关资源
相似解决方案