dotnetCHARTING Send comments on this topic.
TrendLinePolynomial(Series,Int32) Method
See Also 
dotnetCHARTING Namespace > ForecastEngine Class > TrendLinePolynomial Method : TrendLinePolynomial(Series,Int32) Method


s
A statistical series.
degree
The degree of the polynomial which is fitted to the data set given (i.e. if degree is 2, then a quadratic is fitted).
Fits a polynomial of a given degree to a data set in accordance with the least squares approach and returned the values of the fitted function over the same range of the x-coordinate as the given data set.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function TrendLinePolynomial( _
   ByVal s As Series, _
   ByVal degree As Integer _
) As Series
Visual Basic (Usage)Copy Code
Dim s As Series
Dim degree As Integer
Dim value As Series
 
value = ForecastEngine.TrendLinePolynomial(s, degree)
C# 
public static Series TrendLinePolynomial( 
   Series s,
   int degree
)

Parameters

s
A statistical series.
degree
The degree of the polynomial which is fitted to the data set given (i.e. if degree is 2, then a quadratic is fitted).

Remarks

For example, if we fit a polynomial of degree 2, then we fit the quadratic polynomial (i.e. f(x) = a_0 + a_1 x + a_2 x^2); similarly if we fit a polynomial of degree 3, then we fit the cubic polynomial (i.e. f(x) = a_0 + a_1 x + a_2 x^2 + a_3 x^3).

See Also

© 2010 All Rights Reserved.