Shifted Chebyshev V polynomial on .
Chebyshev V polynomials of the third kind composed with , yielding a basis orthogonal on .
Parameters
Argument on ; any floating-point dtype.
nintNon-negative polynomial degree.
Returns
Tensor, element-wise.
Notes
.
Examples
>>> import lucid
>>> from lucid.special import shifted_chebyshev_polynomial_v
>>> shifted_chebyshev_polynomial_v(lucid.tensor([0.0, 1.0]), n=1)
Tensor([-3.0000, 1.0000])