List expressions to solve for
Readonly jacobianjacobian of expressions used for root finding
Private valuesReadonly varsList of variables used inside solver expressions
Iterate the solver until RMSE of expressions gets to or under specified error number;
Or leave when reached number of iterations specified by maxIterations.
Note: Use if the solver converges quickly, as calculating RMSE can be expensive.
Optional maxIterations: number = -1Maximum number of iterations. Use -1 (default value) to iterate without any limit
Generated using TypeDoc
A multivariate Newton-Raphson implementation where x_(k+1) = x_k - J^(-1)(x_k)*f(x_k)