Interface AlgebraicSystem

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AlgebraicSystem
Residual function F(state, parameters, data) = 0.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    evaluate(double[] state, double[] parameters, double[] data, double[] residual)
    Writes the residual into residual.
  • Method Details

    • evaluate

      void evaluate(double[] state, double[] parameters, double[] data, double[] residual)
      Writes the residual into residual.