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 Type
    Method
    Description
    int
    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 Jacobian
    void
    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

      void setJacobianOut(LeastSquaresSwitcher.JacobianOut out)
      Used to pass in the Jacobian storage interface