内容导航:
1、
bessel
2、
怎么找到MATLAB中的贝塞尔函数
1、
bessel
英:【ˈbesəl】美:【ˈbesəl】
英:
美:
常用释义:
贝塞耳
n.贝塞耳(德国天文学家和数学家)
bessel function───【数】贝塞尔函数
1、Some recursion formulae of Bessel functions are derived from such practice problems as well.───并从该实际问题出发,推导出了一类贝塞尔函数的递推公式。
2、Numerical calculations show that after focused by the axicon, a vortex beam can convert into a high-order Bessel beam.───数值模拟结果表明,涡旋光束经过轴棱锥聚焦后可获得高阶贝塞尔光束。
3、main method of evaluation is Bessel formula.───评定方法,主要是贝塞尔公式。
4、Making convenience of computation, the calculation method of the spherical Bessel functions for complex arguments is presented.───便于计算,给出了复宗量的球贝塞尔函数的计算方法。
5、Bessel low a place in people "abuse" is also a lower probability of infection is an effective way.───贝塞尔说,少在人多的地方“扎堆儿”也是降低感染概率的一个有效方法。
6、MathCAD combines a large library of functional capability including calculus, Laplace transforms, Bessel functions, statistics, and financial functions.───MathCAD组合了一个庞大的功能库,包括微积分、拉普拉斯变换、贝塞尔函数、统计和财务函数。
7、The characteristic of Bessel function is discussed, and giving a feasible means of nanometer vibration measurement.───对贝赛尔函数的特性进行分析,提出了一种可行的纳米振动测量方法;
8、Bessel functions, modulation transfer functions, stuff like this.───贝色函数,调制变换函数,以及类似的东西。
9、Intensity distribution of the partially coherent Bessel vortex beams focused by an aperture lens is investigated.───研究了部分相干贝塞尔涡旋光束通过光阑-透镜系统聚集后的光强分布。
1、the best part of the day───一天中最美好的时光
2、the best preparation for tomorrow───为明天做最好的准备
3、besame mucho───多吻我一点
4、badfoit will besind───洗脚会发现
5、gambeson larp───甘贝松
6、best among───最好的
7、bes des───n.鹤嘴锄;丁字镐
8、bestead define───最佳阅读定义
9、obese woman stock images───肥胖女性库存图片
10、best way to───最好的方法
2、
怎么找到MATLAB中的贝塞尔函数
怎么找到MATLAB中的贝塞尔函数:在Help输入: besselj(nu,Z), bessely(nu,Z), besselh(nu,Z), besseli(nu,Z), besselk(nu,Z)即可找到。贝塞尔函数简介: 一般贝塞尔函数是贝塞尔方程的标准解函数。由于贝塞尔微分方程是二阶常微分方程,需要由两个独立的函数来表示其标准解函数。典型的是使用第一类贝塞尔函数和第二类贝塞尔函数来表示标准解函数。此外,贝塞尔函数也被称为柱谐函数、圆柱函数或圆柱谐波,因为他们是于拉普拉斯方程在圆柱坐标上的求解过程中被发现的。在MatLab中用besselj(NU,Z)来表示:用MatLab的仿真代码是:clear ,clc;format longx=(0:0.01:20);y_0=besselj(0,x);y_1=besselj(1,x);y_2=besselj(2,x);plot(x,y_0,x,y_1,x,y_2);grid on;axis(【0,20,-1,1】);title(0阶、一阶、二阶第一类贝塞尔函数曲线图);xlabel(Variable X);ylabel(Variable Y);第二类贝塞尔函数(诺依曼函数)在MatLab中用用bessely(NU,Z)来表示:clear ,clc;format longx=(0:0.01:20);y_0=bessely(0,x);y_1=bessely(1,x);y_2=bessely(2,x);plot(x,y_0,x,y_1,x,y_2);grid on;axis(【1,20,-2,1】);title(0阶、1阶、2阶第二类贝塞尔函数曲线图);xlabel(Variable X);ylabel(Variable Y);第三类贝塞尔函数(汉克尔函数)汉克尔函数在MatLab中用BESSELH(NU,K,Z) clear ,clc;format longx=(0:0.01:20);y_0=besselh(0,2,x);y_1=besselh(1,2,x);y_2=besselh(2,2,x);plot(x,y_0,x,y_1,x,y_2);axis(【0,20,-0.5,1】);grid on;title(0阶、1阶、2阶第三类贝塞尔函数曲线图);xlabel(Variable X);ylabel(Variable Y);变形第一类贝塞尔函数(modified function of the first kind)变形第一类贝塞尔函数在MatLab中用BESSELI(NU,Z) 表示clear ,clc;format longx=(0:0.01:20);y_0=besseli(0,x);y_1=besseli(1,x);y_2=besseli(2,x);plot(x,y_0,x,y_1,x,y_2);grid on;axis(【0,6,0,6】);title(0阶、1阶、2阶变形第一类贝塞尔函数曲线);xlabel(Variable X);ylabel(Varialbe Y);变形第二类贝塞尔函数(modified Bessel function of the second kind)变形第二类贝塞尔函数在MatLab中用BESSELK(NU,Z) 表示clear ,clc;format longx=(0:0.01:20);y_0=besselk(0,x);y_1=besselk(1,x);y_2=besselk(2,x);plot(x,y_0,x,y_1,x,y_2);grid on;axis(【0,6,0,6】);title(0阶、1阶、2阶变形第二类贝塞尔函数曲线);xlabel(Variable X);ylabel(Varialbe Y);