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