Artifact 4023631e61263ce6bc45909a3e443aabd9800f2dd707e00630dc09671a3c0b7a:
- Executable file
r37/lisp/csl/html/r37_0500.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 768) [annotate] [blame] [check-ins using] [more...]
<A NAME=ChebyshevU> <TITLE>ChebyshevU</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>CHEBYSHEVU</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> The <em>ChebyshevU</em> operator returns the nth Chebyshev U Polynomial (of the second kind). <P> <P> <P> <H3> syntax: </H3> <em>ChebyshevU</em>(<integer>,<expression>) <P> <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> ChebyshevU(3,xx); 2 4*x*(2*x - 1) ChebyshevU(3,4); 496 </TT></PRE><P>Chebyshev's U polynomials are computed using the recurrence relati on: <P> <P> ChebyshevU(n,x) := 2x*ChebyshevU(n-1,x) - ChebyshevU(n-2,x) with <P> <P> ChebyshevU(0,x) := 0 and ChebyshevU(1,x) := 2x <P> <P> <P> <P>