bessel中文翻譯,bessel是什么意思,bessel發(fā)音、用法及例句
- 內(nèi)容導航:
- 1、bessel
- 2、怎么找到MATLAB中的貝塞爾函數(shù)
1、bessel
bessel發(fā)音
英:[?bes?l] 美:[?bes?l]
英: 美:
bessel中文意思翻譯
常用釋義:貝塞耳
n.貝塞耳(德國天文學家和數(shù)學家)
bessel常用詞組:
bessel function───[數(shù)]貝塞爾函數(shù)
bessel雙語使用場景
1、Some recursion formulae of Bessel functions are derived from such practice problems as well.───并從該實際問題出發(fā),推導出了一類貝塞爾函數(shù)的遞推公式。
2、Numerical calculations show that after focused by the axicon, a vortex beam can convert into a high-order Bessel beam.───數(shù)值模擬結果表明,渦旋光束經(jīng)過軸棱錐聚焦后可獲得高階貝塞爾光束。
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.───便于計算,給出了復宗量的球貝塞爾函數(shù)的計算方法。
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組合了一個龐大的功能庫,包括微積分、拉普拉斯變換、貝塞爾函數(shù)、統(tǒng)計和財務函數(shù)。
7、The characteristic of Bessel function is discussed, and giving a feasible means of nanometer vibration measurement.───對貝賽爾函數(shù)的特性進行分析,提出了一種可行的納米振動測量方法;
8、Bessel functions, modulation transfer functions, stuff like this.───貝色函數(shù),調制變換函數(shù),以及類似的東西。
9、Intensity distribution of the partially coherent Bessel vortex beams focused by an aperture lens is investigated.───研究了部分相干貝塞爾渦旋光束通過光闌-透鏡系統(tǒng)聚集后的光強分布。
bessel相似詞語短語
1、the best part of the day───一天中最美好的時光
2、the best preparation for tomorrow───為明天做最好的準備
3、besame mucho───多吻我一點
4、badfoit will besind───洗腳會發(fā)現(xiàn)
5、gambeson larp───甘貝松
6、best among───最好的
7、bes des───n.鶴嘴鋤;丁字鎬
8、bestead define───最佳閱讀定義
9、obese woman stock images───肥胖女性庫存圖片
10、best way to───最好的方法
2、怎么找到MATLAB中的貝塞爾函數(shù)
怎么找到MATLAB中的貝塞爾函數(shù):在Help輸入: besselj(nu,Z), bessely(nu,Z), besselh(nu,Z), besseli(nu,Z), besselk(nu,Z)即可找到。貝塞爾函數(shù)簡介: 一般貝塞爾函數(shù)是貝塞爾方程的標準解函數(shù)。由于貝塞爾微分方程是二階常微分方程,需要由兩個獨立的函數(shù)來表示其標準解函數(shù)。典型的是使用第一類貝塞爾函數(shù)和第二類貝塞爾函數(shù)來表示標準解函數(shù)。此外,貝塞爾函數(shù)也被稱為柱諧函數(shù)、圓柱函數(shù)或圓柱諧波,因為他們是于拉普拉斯方程在圓柱坐標上的求解過程中被發(fā)現(xiàn)的。在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階、一階、二階第一類貝塞爾函數(shù)曲線圖');xlabel('Variable X');ylabel('Variable Y');第二類貝塞爾函數(shù)(諾依曼函數(shù))在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階第二類貝塞爾函數(shù)曲線圖');xlabel('Variable X');ylabel('Variable Y');第三類貝塞爾函數(shù)(漢克爾函數(shù))漢克爾函數(shù)在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階第三類貝塞爾函數(shù)曲線圖');xlabel('Variable X');ylabel('Variable Y');變形第一類貝塞爾函數(shù)(modified function of the first kind)變形第一類貝塞爾函數(shù)在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階變形第一類貝塞爾函數(shù)曲線');xlabel('Variable X');ylabel('Varialbe Y');變形第二類貝塞爾函數(shù)(modified Bessel function of the second kind)變形第二類貝塞爾函數(shù)在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階變形第二類貝塞爾函數(shù)曲線');xlabel('Variable X');ylabel('Varialbe Y');
本站其他內(nèi)容推薦
1、mall wax-paper abstract heeler sadistic hi-fi Dodgers clitoral clodhopper Burmese
2、single minded(single-minded中文翻譯,single-minded是什么意思,single-minded發(fā)音、用法及例句)
3、ovipositor mpreg中文翻譯,ovipositor mpreg是什么意思,ovipositor mpreg發(fā)音、用法及例句
4、mandarin chinese中文翻譯,mandarin chinese是什么意思,mandarin chinese發(fā)音、用法及例句
5、abysmal是什么意思,abysmal中文翻譯,abysmal發(fā)音、用法及例句
6、史蒂夫的英文,Stevie是什么意思,Stevie中文翻譯,Stevie發(fā)音、用法及例句
7、淺組詞組詞語,淺組詞,淺字可以組什么詞,淺怎么組詞,淺字的組詞有哪些
8、痖[ yǎ ],痖字的拼音,部首,意思,組詞,痖字的筆順,筆畫順序怎么寫
9、sarracenia是什么意思,sarracenia中文翻譯,sarracenia怎么讀、發(fā)音、用法及例句
10、ostentation是什么意思,ostentation中文翻譯,ostentation怎么讀、發(fā)音、用法及例句
版權聲明: 本站僅提供信息存儲空間服務,旨在傳遞更多信息,不擁有所有權,不承擔相關法律責任,不代表本網(wǎng)贊同其觀點和對其真實性負責。如因作品內(nèi)容、版權和其它問題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實,本站將立刻刪除。