Skip to content

Commit

Permalink
fix: 🚨 fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Jan 13, 2024
1 parent 188071e commit 36d1f43
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/jacobian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { array2d } from './functions';
* @param step The step size for numerical differentiation (default: 1e-5).
* @returns The Jacobian matrix.
*/

export function jacobian(f: JacobianFunction, m: number, x0: Float64Array, step = 0.00001): Matrix {
const n = x0.length;
const j = array2d(m, n, 0);
Expand Down

0 comments on commit 36d1f43

Please sign in to comment.