MultidimensionalOptimizer.InitialGuess Property

Gets or sets the initial value for the iteration.

Definition

Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public override Vector<double> InitialGuess { get; set; }

Property Value

Vector<Double>

Remarks

The length of the vector must be the same as the number of unknowns in the system of equations.

The default value of the initial guess is typically set to a zero vector or a vector of ones, depending on the specific implementation and the nature of the optimization problem.

Exceptions

ArgumentNullException

value is null.

See Also