Chebyshev Series Constructor
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Chebyshev | Constructs a new ChebyshevSeries of the specified degree over the interval [-1, 1]. |
Chebyshev | Constructs a new ChebyshevSeries with the specified coefficients over the interval [-1, 1]. |
Chebyshev | Constructs a new ChebyshevSeries of the specified degree over the specified interval. |
Chebyshev | 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].
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].
public ChebyshevSeries(
Vector<double> coefficients
)
Parameters
ChebyshevSeries(Int32, Double, Double)
Constructs a new ChebyshevSeries of the specified
degree over the specified interval.
public ChebyshevSeries(
int degree,
double lowerBound,
double upperBound
)
Parameters
ChebyshevSeries(Vector<Double>, Double, Double)
Constructs a new ChebyshevSeries with the
specified coefficients over the specified interval.
public ChebyshevSeries(
Vector<double> coefficients,
double lowerBound,
double upperBound
)