Sets the initial guess.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual void SetGuess(
	double[] guess
)
Visual Basic (Declaration)
Public Overridable Sub SetGuess ( _
	guess As Double() _
)
Visual C++
public:
virtual void SetGuess(
	array<double>^ guess
)

Parameters

guess
Type: array< System..::.Double >[]()[]
A double array containing the initial guess.

Remarks

If set, the guess is used in a two-phase algorithm where the positive components are matched with positive gradients to choose an incoming column. If not set, the algorithm uses only the gradient to verify that an optimum has been found.

See Also