Exa17.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. % Cartezian plot of Bessel function J0(sqrt(x^2+y^2))
  2. [x,y]=meshgrid(-12:.7:12, -12:.7:12);
  3.                            % meshgrid transforms the specified domain
  4.                            % into array x and y for evaluating z
  5. r=sqrt(x.^2+y.^2);z= bessel(0,r);
  6. m=[-45 60];
  7. mesh(z,m)                    % 3-D mesh plot