Exa17.m
资源名称:power.rar [点击查看]
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:
其他行业
开发平台:
Matlab
- % Cartezian plot of Bessel function J0(sqrt(x^2+y^2))
- [x,y]=meshgrid(-12:.7:12, -12:.7:12);
- % meshgrid transforms the specified domain
- % into array x and y for evaluating z
- r=sqrt(x.^2+y.^2);z= bessel(0,r);
- m=[-45 60];
- mesh(z,m) % 3-D mesh plot