dotnetCHARTING Send comments on this topic.
AddPowerTerm Method
See Also 
dotnetCHARTING Namespace > ForecastEngine.Options Class : AddPowerTerm Method


coefficient
A double which is the coefficient of the term (i.e. a_1 above).
exponent
A double which is the exponent of the variable of the term (i.e. n above).
Add a power term as an element of the function basis.

Syntax

Visual Basic (Declaration)  
Public Shared Sub AddPowerTerm( _
   ByVal coefficient As Double, _
   ByVal exponent As Double _
) 
Visual Basic (Usage) Copy Code
Dim coefficient As Double
Dim exponent As Double
 
ForecastEngine.Options.AddPowerTerm(coefficient, exponent)
C#  
public static void AddPowerTerm( 
   double coefficient,
   double exponent
)

Parameters

coefficient
A double which is the coefficient of the term (i.e. a_1 above).
exponent
A double which is the exponent of the variable of the term (i.e. n above).

Remarks

This elements will take the follow form:

a_1 * x^n,

where a_1, n are arbitrary real numbers.

See Also