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:
- Returns:
The exponentially scaled modified Bessel function of the second kind.
- Return type:
scalar or ndarray
See also
kvThis function without exponential scaling.
k0eFaster version of this function for order 0.
k1eFaster 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