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