Contents
Main
Site map
Links
Site and author
News
Contact

Chebyshev polynomials

The Chebyshev polynomials of the first (T and second (U) kinds can be defined by the trigonometric identity

T(x) = cos(n arccos x)
U(x) = sin((n+1) arccos x) / sin( arccos x)

or can be constructed using the three term recurrence relation:

T(x) = 1
T(x) = x
Tn+1 (x) = 2xT(x) - Tn-1 (x)
U(x) = 1
U(x) = 2x
Un+1 (x) = 2xT(x) - Tn-1 (x)

Unit description

The recurrence relation given above is the most efficient way to calculate the Chebyshev polynomial. The ChebyshevCalculate subroutine uses this relation to calculate T(x) and/or U(x) for any given x.

The ChebyshevSum subroutine calculates the sum of Chebyshev polynomials cT(x) + cT(x) + ... + cT(x) using Clenshaw's recurrence formula.

The ChebyshevCoefficients subroutine can represent T(x) as a sum of powers of x: c + cx + ... + cx n.

The FromChebyshev subroutine can perform a conversion of a series of Chebyshev polynomials to a power series.

This article is intended for personal use only.

Download ALGLIB

C#

C# source.

alglib-2.4.0.csharp.zip

 

C++

C++ source.

alglib-2.4.0.cpp.zip

 

C++, multiple precision arithmetic

C++ source. MPFR/GMP is used.

GMP source is available from gmplib.org. MPFR source is available from www.mpfr.org.

alglib-2.4.0.mpfr.zip

 

FreePascal

FreePascal source.

alglib-2.4.0.freepascal.zip

 

Delphi

Delphi source.

alglib-2.4.0.delphi.zip

 

Visual Basic

VBA source.

alglib-2.4.0.vb6.zip

 


 
 
Sergey Bochkanov, Vladimir Bystritsky
Copyright © 1999-2010