pytorch
bc841431 - Orthogonal Polynomials (#78304)

Commit
2 years ago
Orthogonal Polynomials (#78304) ```Python chebyshev_polynomial_v(input, n, *, out=None) -> Tensor ``` Chebyshev polynomial of the third kind $V_{n}(\text{input})$. ```Python chebyshev_polynomial_w(input, n, *, out=None) -> Tensor ``` Chebyshev polynomial of the fourth kind $W_{n}(\text{input})$. ```Python legendre_polynomial_p(input, n, *, out=None) -> Tensor ``` Legendre polynomial $P_{n}(\text{input})$. ```Python shifted_chebyshev_polynomial_t(input, n, *, out=None) -> Tensor ``` Shifted Chebyshev polynomial of the first kind $T_{n}^{\ast}(\text{input})$. ```Python shifted_chebyshev_polynomial_u(input, n, *, out=None) -> Tensor ``` Shifted Chebyshev polynomial of the second kind $U_{n}^{\ast}(\text{input})$. ```Python shifted_chebyshev_polynomial_v(input, n, *, out=None) -> Tensor ``` Shifted Chebyshev polynomial of the third kind $V_{n}^{\ast}(\text{input})$. ```Python shifted_chebyshev_polynomial_w(input, n, *, out=None) -> Tensor ``` Shifted Chebyshev polynomial of the fourth kind $W_{n}^{\ast}(\text{input})$. Pull Request resolved: https://github.com/pytorch/pytorch/pull/78304 Approved by: https://github.com/mruberry
Author
Committer
Parents
Loading