早教吧 育儿知识 作业答案 考试题库 百科 知识分享

急求贝塞尔函数的积分,积分上下限为(0,X),公式为besselj(0,x)^2*x^3,其实就是贝塞尔函数的平方不会算,编出结果总是有问题

题目详情
急求贝塞尔函数的积分,积分上下限为(0,X),公式为besselj(0,x)^2*x^3,
其实就是贝塞尔函数的平方不会算,编出结果总是有问题
▼优质解答
答案和解析
贝塞尔函数分为几类,看看以下帮助,也许有所启发.
>> help Bessel
BESSEL Bessel functions of various kinds.
Bessel functions are solutions to Bessel's differential
equation of order NU:
2 2 2
x * y'' + x * y' + (x - nu ) * y = 0

There are several functions available to produce solutions to
Bessel's equations. These are:

BESSELJ(NU,Z) Bessel function of the first kind
BESSELY(NU,Z) Bessel function of the second kind
BESSELI(NU,Z) Modified Bessel function of the first kind
BESSELK(NU,Z) Modified Bessel function of the second kind
BESSELH(NU,K,Z) Hankel function
AIRY(K,Z) Airy function

See the help for each function for more details.
>> help BesselJ
BESSELJ Bessel function of the first kind.
J = BESSELJ(NU,Z) is the Bessel function of the first kind, J_nu(Z).
The order NU need not be an integer, but must be real.
The argument Z can be complex. The result is real where Z is positive.

If NU and Z are arrays of the same size, the result is also that size.
If either input is a scalar, it is expanded to the other input's size.
If one input is a row vector and the other is a column vector, the
result is a two-dimensional table of function values.

J = BESSELJ(NU,Z,0) is the same as BESSELJ(NU,Z).

J = BESSELJ(NU,Z,1) scales J_nu(z) by exp(-abs(imag(z)))

[J,IERR] = BESSELJ(NU,Z) also returns an array of error flags.
ierr = 1 Illegal arguments.
ierr = 2 Overflow. Return Inf.
ierr = 3 Some loss of accuracy in argument reduction.
ierr = 4 Complete loss of accuracy, z or nu too large.
ierr = 5 No convergence. Return NaN.

Examples:

besselj(3:9,(0:.2:10)') generates the entire table on page 398
of Abramowitz and Stegun, Handbook of Mathematical Functions.

MEMBRANE uses BESSELJ to generate the fractional order Bessel
functions used by the MathWorks Logo, the L-shaped membrane.

This M-file uses a MEX interface to a Fortran library by D. E. Amos.

Class support for inputs NU and Z:
float: double, single

See also bessely, besseli, besselk, besselh.