MATLAB Function Reference | Search  Help Desk |
besselj, bessely | Examples See Also |
J = besselj(nu,Z) Bessel function of the 1st kind Y = bessely(nu,Z) Bessel function of the 2nd kind [J,ierr] = besselj(nu,Z) [Y,ierr] = bessely(nu,Z)The differential equation
J = besselj(nu,Z)
computes Bessel functions of the first kind, for each element of the complex array 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.
Y = bessely(nu,Z)
computes Bessel functions of the second kind, for real, nonnegative order nu
and argument Z
.
[J,ierr] = besselj(nu,Z) and [Y,ierr] = bessely(nu,Z)
also return an array of error flags.besselj
, and is bessely
. The Hankel functions also form a fundamental set of solutions to Bessel's equation (see besselh
).
besselj(3:9,(0:.2:10)')
generates the entire table on page 398 of Abramowitz and Stegun, Handbook of Mathematical Functions.
The besselj
and bessely
functions use a Fortran MEX-file to call a library developed by D. E. Amos [3] [4].
airy
Airy functions
besseli
, besselk
Modified Bessel functions