Special.Chebyshev TSeries Method
            
            Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Chebyshev | Evaluates a series of Chebyshev polynomials of the first kind. | 
| Chebyshev | Evaluates a series of Chebyshev polynomials of the first kind up to the specified degree. | 
ChebyshevTSeries(Vector<Double>, Double)
            Evaluates a series of Chebyshev polynomials of the first kind.
            
public static double ChebyshevTSeries(
	Vector<double> coefficients,
	double x
)Parameters
- coefficients Vector<Double>
 - A vector containing the coefficients.
 - x Double
 - The value for which to evaluate the series.
 
Return Value
DoubleThe sum of the Chebyshev polynomials at x multiplied by the corresponding element of coefficients.
Exceptions
| Argument | coefficients is null.  | 
ChebyshevTSeries(Vector<Double>, Double, Int32)
            Evaluates a series of Chebyshev polynomials of the first kind up to the specified degree.
            
public static double ChebyshevTSeries(
	Vector<double> coefficients,
	double x,
	int maxDegree
)Parameters
- coefficients Vector<Double>
 - A vector containing the coefficients.
 - x Double
 - The value for which to evaluate the series.
 - maxDegree Int32
 - the degree of the highest order polynomial to include in the series.
 
Return Value
DoubleThe sum of the Chebyshev polynomials up to degree maxDegree evaluated at x and multiplied by the corresponding element of coefficients.
Remarks
If maxDegree is less than zero, then zero is returned.
Exceptions
| Argument | coefficients is null.  |