Package org.ddogleg.optimization.wrap
Class LsToNonLinearDeriv<S extends DMatrix>
java.lang.Object
org.ddogleg.optimization.wrap.LsToNonLinearDeriv<S>
- All Implemented Interfaces:
FunctionNtoN
Convert the Jacobian of a least squares function into a nonlinear optimization gradient.
G(x) = sum 2*f'_i(x)*f_i(x)
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
LsToNonLinearDeriv
-
-
Method Details
-
getN
public int getN()Description copied from interface:FunctionNtoN
Returns the number of inputs and outputs for this function.- Specified by:
getN
in interfaceFunctionNtoN
-
process
public void process(double[] input, double[] output) Description copied from interface:FunctionNtoN
Processes the function.- Specified by:
process
in interfaceFunctionNtoN
- Parameters:
input
- Array with the inputs of length N. Not modified.output
- Array for storing the output of length N. Modified.
-