fn
shifted_chebyshev_polynomial_w
→Tensorshifted_chebyshev_polynomial_w(x: Tensor, n: int)Shifted Chebyshev W polynomial on .
Chebyshev W polynomials of the fourth kind composed with .
Parameters
xTensorArgument on ; any floating-point dtype.
nintNon-negative polynomial degree.
Returns
Tensor, element-wise.
Notes
.
Examples
>>> import lucid
>>> from lucid.special import shifted_chebyshev_polynomial_w
>>> shifted_chebyshev_polynomial_w(lucid.tensor([0.0, 1.0]), n=1)
Tensor([-1.0000, 3.0000])