Click or drag to resize

FindRootsChebychevPolynomialSecondKind Method

Find all roots of the Chebychev polynomial of the second kind.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double[] ChebychevPolynomialSecondKind(
	int degree,
	double intervalBegin = -1,
	double intervalEnd = 1
)

Parameters

degree  Int32
The polynomial order and therefore the number of roots.
intervalBegin  Double  (Optional)
The real domain interval begin where to start sampling.
intervalEnd  Double  (Optional)
The real domain interval end where to stop sampling.

Return Value

Double
Samples in [a,b] at (b+a)/2+(b-1)/2*cos(pi*i/(n-1))
See Also