Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.

chebyshev

Florian Rappl edited this page Dec 21, 2014 · 2 revisions

chebyshev

In mathematics the Chebyshev polynomials are a sequence of orthogonal polynomials which are related to de Moivre's formula and which can be defined recursively. One usually distinguishes between Chebyshev polynomials of the first kind which are denoted Tn and Chebyshev polynomials of the second kind which are denoted Un. The letter T is used because of the alternative transliterations of the name Chebyshev as Tchebycheff (French) or Tschebyschow (German). This function corresponds to the Chebyshev polynomials of first kind.

chebyshev(n,x)

Evaluates the Chebyshev polynomial of some order n at the given point x in R.

Argument n

Scalar

Argument x

Scalar

Returns 1. entry

Scalar

Example

chebyshev(3, 0.5)

Evaluates the Chebyshev polynomial of order 3 at the point x = 0.5.

chebyshev(n,X)

Evaluates the Chebyshev polynomial of some order n at the given points in the matrix X in R.

Argument n

Scalar

Argument X

Matrix

Returns 1. entry

Matrix

Example

chebyshev(1, [-1, 0.5, 0, 0.5, 1])

Evaluates the first Chebyshev polynomial (which is just x), at the points -1 to 1 with a spacing of 0.5.

Clone this wiki locally