Sets the initial guess of the solution.

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

Syntax

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

Parameters

xGuess
Type: array< System..::.Double >[]()[]
A double array of length n containing the initial guess of the solution.

Remarks

By default the elements of this array are set to 0.0.

See Also