Package org.ddogleg.optimization
Interface LeastSquaresSwitcher.ProcessJacobianOut
- Enclosing class:
- LeastSquaresSwitcher<S extends DMatrix>
public static interface LeastSquaresSwitcher.ProcessJacobianOut
High level interface for implementing the Jacobian. Main feature is the ability to pass in
LeastSquaresSwitcher.JacobianOut
which allows you to write values into the Jacobian.-
Method Summary
Modifier and TypeMethodDescriptionint
If a Schur decomposition is used, where should it split the Jacobian into a left and right matrix?void
process
(double[] input) When called it will compute the Jacobianvoid
Used to pass in the Jacobian storage interface
-
Method Details
-
process
void process(double[] input) When called it will compute the Jacobian -
getSchurSplit
int getSchurSplit()If a Schur decomposition is used, where should it split the Jacobian into a left and right matrix? -
setJacobianOut
Used to pass in the Jacobian storage interface
-