Barycentric Basis.Chebyshev 2 Method
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
Chebyshev2( | 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( | 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].
public static BarycentricBasis Chebyshev2(
int degree
)
Parameters
- degree Int32
- The degree of the highest order Chebyshev polynomial in the series.
Return Value
BarycentricBasisExceptions
Argument | 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.
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
BarycentricBasisExceptions
Argument | degree is less than or equal to zero. |