Click or drag to resize

LevenbergMarquardt Constructor (Int32, Int32, VectorFunction, VectorFunction)

Constructor for minimizing/finding zeros of the function

The jacobian must return the jacobian as a vector in column major ordering containing the coefficients [df1_dx1, df2_dx1, df1_dx2, df2_dx2].

Namespace:  DHIMath.Numerics
Assembly:  DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax
C#
public LevenbergMarquardt(
	int dimx,
	int dimf,
	VectorFunction function,
	VectorFunction jacobian
)

Parameters

dimx
Type: SystemInt32
Dimension of parameter vector x
dimf
Type: SystemInt32
Dimension of vector f function
function
Type: DHIMath.NumericsVectorFunction
Function to find zero of
jacobian
Type: DHIMath.NumericsVectorFunction
Jacobian of function
See Also