maxframe.tensor.special.kve#

maxframe.tensor.special.kve(v, z, out=None)[source]#

Exponentially scaled modified Bessel function of the second kind.

Returns the exponentially scaled, modified Bessel function of the second kind (sometimes called the third kind) for real order v at complex z:

kve(v, z) = kv(v, z) * exp(z)
Parameters:
  • v (array_like of float) – Order of Bessel functions

  • z (array_like of complex) – Argument at which to evaluate the Bessel functions

  • out (ndarray, optional) – Optional output array for the function results

Returns:

The exponentially scaled modified Bessel function of the second kind.

Return type:

scalar or ndarray

See also

kv

This function without exponential scaling.

k0e

Faster version of this function for order 0.

k1e

Faster version of this function for order 1.

Notes

Wrapper for AMOS [1] routine zbesk. For a discussion of the algorithm used, see [2] and the references therein.

References