tf.math.bessel_i1e(
x,
name=None
)
Defined in tensorflow/python/ops/math_ops.py
.
Computes the Bessel i1e function of x
element-wise.
Exponentially scaled modified Bessel function of order 1 defined as
bessel_i1e(x) = exp(-abs(x)) bessel_i1(x)
.
This function is faster and numerically stabler than bessel_i1(x)
.
Args:
x
: ATensor
orSparseTensor
. Must be one of the following types:half
,float32
,float64
.name
: A name for the operation (optional).
Returns:
A Tensor
or SparseTensor
, respectively. Has the same type as x
.
Scipy Compatibility
Equivalent to scipy.special.i1e