Function torch::special::i1e¶
Defined in File special.h
Function Documentation¶
-
inline Tensor torch::special::i1e(const Tensor &self)¶
Computes the exponentially scaled first order modified Bessel function of the first kind See https://pytorch.org/docs/main/special.html#torch.special.i1e.
Example:
auto t = torch::randn(128, dtype=kDouble); torch::special::i1e(t);