Loading [MathJax]/jax/output/HTML-CSS/jax.js
SciPy

This is documentation for an old release of SciPy (version 0.18.1). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.special.jve

scipy.special.jve(v, z) = <ufunc 'jve'>

Exponentially scaled Bessel function of order v.

Defined as:

jve(v, z) = jv(v, z) * exp(-abs(z.imag))
Parameters:

v : array_like

Order (float).

z : array_like

Argument (float or complex).

Returns:

J : ndarray

Value of the exponentially scaled Bessel function.

Notes

For positive v values, the computation is carried out using the AMOS [R400] zbesj routine, which exploits the connection to the modified Bessel function Iv,

Jv(z)=exp(nπı/2)Iv(ız)(z>0)Jv(z)=exp(nπı/2)Iv(ız)(z<0)

For negative v values the formula,

Jv(z)=Jv(z)cos(πv)Yv(z)sin(πv)

is used, where Yv(z) is the Bessel function of the second kind, computed using the AMOS routine zbesy. Note that the second term is exactly zero for integer v; to improve accuracy the second term is explicitly omitted for v values such that v = floor(v).

References

[R400](1, 2) Donald E. Amos, “AMOS, A Portable Package for Bessel Functions of a Complex Argument and Nonnegative Order”, http://netlib.org/amos/

Previous topic

scipy.special.jn

Next topic

scipy.special.yn