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