Main       Download       Commercial support       FAQ       Forum       About Us

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.

Downloads page

 

C++

C++ source.

Downloads page

 

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.

Downloads page

 

FreePascal

FreePascal version.

Downloads page

 

Delphi

Delphi version.

Downloads page

 

VB.NET

VB.NET version.

Downloads page

 

VBA

VBA version.

Downloads page

 

Python

Python version (CPython and IronPython are supported).

Downloads page

 

 

ALGLIB® - numerical analysis library, 1999-2012.
ALGLIB is a registered trademark of the ALGLIB Project.