Scilab 5.5.1
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
chepol
Chebychev polynomial
Calling Sequence
[Tn]=chepol(n,var)
Arguments
- n
- integer : polynomial order 
- var
- string : polynomial variable 
- Tn
- polynomial in the variable - var
Description
Recursive implementation of Chebychev polynomial.
            Tn=2*poly(0,var)*chepol(n-1,var)-chepol(n-2,var) with
            T0=1 and T1=poly(0,var).
Examples
chepol(4,'x')
| Report an issue | ||
| << varn | Polynômes | systmat >> |