Function torch::special::laguerre_polynomial_l(const Tensor&, const Tensor&)#
Defined in File special.h
Function Documentation#
-
inline Tensor torch::special::laguerre_polynomial_l(const Tensor &x, const Tensor &n)#
Laguerre polynomial.
See https://pytorch.org/docs/main/special.html#torch.special.laguerre_polynomial_l.
Example:
auto x = torch::randn(128, dtype=kDouble); auto n = torch::randn(128, dtype=kDouble); torch::special::laguerre_polynomial_l(x, n);