Click or drag to resize

QuasiNewton Class

Represents base class for all quasi-Newton optimization algorithms.
Inheritance Hierarchy
SystemObject
  FinMath.NumericalOptimization.UnconstrainedQuasiNewton
    FinMath.NumericalOptimization.UnconstrainedBFGS

Namespace:  FinMath.NumericalOptimization.Unconstrained
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public abstract class QuasiNewton

The QuasiNewton type exposes the following members.

Properties
  NameDescription
Public propertyArgumentTolerance
Termination tolerance on position change, a positive scalar.
Public propertyFunctionTolerance
Termination tolerance on the function value, a positive scalar.
Public propertyHessianResetPeriod
The period for resetting inverse Hessian to identity matrix.
Public propertyIterationsDone
The number of iterations that was done.
Public propertyIterationsLimit
The maximum number of iterations to do.
Public propertyMinimumPoint
The found minimum point.
Public propertyStatus
The status of algorithm termination.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMinimize
Runs the optimization algorithm with zero starting point.
Public methodMinimize(Vector)
Runs the optimization algorithm with specified starting point.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also