CQBZOIer-zyy

[x,y] = meshgrid(-8:0.5:8);
z = sin(sqrt(x.^2+y.^2))./sqrt(x.^2+y.^2+eps);

subplot(2,2,1);
mesh(x,y,z);
title(\'mesh(x,y,z)\');

subplot(2,2,2);
meshc(x,y,z);
title(\'meshc(x,y,z)\');

subplot(2,2,3);
meshz(x,y,z)
title(\'meshz(x,y,z)\');

subplot(2,2,4);
surf(x,y,z)
title(\'surf(x,y,z)\');

分类:

技术点:

相关文章:

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