fn
shifted_chebyshev_polynomial_v
→Tensorshifted_chebyshev_polynomial_v(x: Tensor, n: int)Shifted Chebyshev V polynomial on .
Chebyshev V polynomials of the third kind composed with , yielding a basis orthogonal on .
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_v
>>> shifted_chebyshev_polynomial_v(lucid.tensor([0.0, 1.0]), n=1)
Tensor([-3.0000, 1.0000])