BarycentricBasis.Chebyshev2 Method

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Chebyshev2(Int32) Returns a new BarycentricBasis equivalent to a basis of Chebyshev polynomials of the second kind of the specified degree over the interval [-1, 1].
Chebyshev2(Double, Double, Int32) Returns a new BarycentricBasis equivalent to a basis of Chebyshev polynomials of the second kind of the specified degree over the specified interval.

Chebyshev2(Int32)

Returns a new BarycentricBasis equivalent to a basis of Chebyshev polynomials of the second kind of the specified degree over the interval [-1, 1].
C#
public static BarycentricBasis Chebyshev2(
	int degree
)

Parameters

degree  Int32
The degree of the highest order Chebyshev polynomial in the series.

Return Value

BarycentricBasis

Exceptions

ArgumentOutOfRangeException

degree is less than or equal to zero.

Chebyshev2(Double, Double, Int32)

Returns a new BarycentricBasis equivalent to a basis of Chebyshev polynomials of the second kind of the specified degree over the specified interval.
C#
public static BarycentricBasis Chebyshev2(
	double lowerBound,
	double upperBound,
	int degree
)

Parameters

lowerBound  Double
The lower bound of the interval.
upperBound  Double
The upper bound of the interval.
degree  Int32
The degree of the highest order Chebyshev polynomial in the series.

Return Value

BarycentricBasis

Exceptions

ArgumentOutOfRangeException

degree is less than or equal to zero.

See Also