ChebyshevSeries Constructor

Definition

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

Overload List

ChebyshevSeries(Int32) Constructs a new ChebyshevSeries of the specified degree over the interval [-1, 1].
ChebyshevSeries(Vector<Double>) Constructs a new ChebyshevSeries with the specified coefficients over the interval [-1, 1].
ChebyshevSeries(Int32, Double, Double) Constructs a new ChebyshevSeries of the specified degree over the specified interval.
ChebyshevSeries(Vector<Double>, Double, Double) Constructs a new ChebyshevSeries with the specified coefficients over the specified interval.

ChebyshevSeries(Int32)

Constructs a new ChebyshevSeries of the specified degree over the interval [-1, 1].
C#
public ChebyshevSeries(
	int degree
)

Parameters

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

ChebyshevSeries(Vector<Double>)

Constructs a new ChebyshevSeries with the specified coefficients over the interval [-1, 1].
C#
public ChebyshevSeries(
	Vector<double> coefficients
)

Parameters

coefficients  Vector<Double>
An array of coefficients. The index into the array corresponds to the degree of the coefficient.

ChebyshevSeries(Int32, Double, Double)

Constructs a new ChebyshevSeries of the specified degree over the specified interval.
C#
public ChebyshevSeries(
	int degree,
	double lowerBound,
	double upperBound
)

Parameters

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

ChebyshevSeries(Vector<Double>, Double, Double)

Constructs a new ChebyshevSeries with the specified coefficients over the specified interval.
C#
public ChebyshevSeries(
	Vector<double> coefficients,
	double lowerBound,
	double upperBound
)

Parameters

coefficients  Vector<Double>
An array of coefficients. The index into the array corresponds to the degree of the coefficient.
lowerBound  Double
The lower bound of the interval.
upperBound  Double
The upper bound of the interval.

See Also