numopt-js
    Preparing search index...

    Type Alias JacobianFn

    JacobianFn: (parameters: Float64Array) => Matrix

    Function that computes the Jacobian matrix for nonlinear least squares problems. Takes parameter vector and returns Jacobian matrix (ml-matrix Matrix type).

    Note: Uses Matrix from ml-matrix package for efficient matrix operations. The Matrix type provides optimized linear algebra operations and is browser-compatible.

    Type Declaration

      • (parameters: Float64Array): Matrix
      • Parameters

        • parameters: Float64Array

        Returns Matrix