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