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


constant
The constant value taken by the constant function.
Adds a constant function on one real variable to the function basis.

Syntax

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

Parameters

constant
The constant value taken by the constant function.

Remarks

The constant function takes the form:

f(x) = constant

where x is the variable and constant is a real number.

See Also