Solve a system of nonlinear equations using the Levenberg-Marquardt
algorithm.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] Solve(
ZeroSystemIFunction f
)
Public Function Solve (
f As ZeroSystemIFunction
) As Double()
public:
array<double>^ Solve(
ZeroSystemIFunction^ f
)
member Solve :
f : ZeroSystemIFunction -> float[]
Parameters
- f
- Type: Imsl.MathZeroSystemIFunction
Defines a ZeroSystem.IFunction whose zero is to be found. If
f implements a ZeroSystem.IJacobian then its Jacobian
is used. Otherwise finite difference is used.
Return Value
Type:
Double
A
double array containing the solution.
Exceptions See Also