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