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