UNPKG

fsolve-js

Version:

A numerical solver for non-linear systems of equations, utilizing the n-dimensional Newton-Raphson method.

51 lines (50 loc) 1.18 kB
{ "name": "fsolve-js", "version": "1.1.3", "description": "A numerical solver for non-linear systems of equations, utilizing the n-dimensional Newton-Raphson method.", "keywords": [ "newton-raphson", "numerical-solver", "non-linear-equations", "n-dimensional", "multi-dimensional", "root-finding", "equation-solver", "fsolve", "numerical-methods", "math", "mathematics", "algorithm", "scientific-computing", "nonlinear-systems", "optimization", "javascript", "js", "typescript", "ts" ], "homepage": "https://github.com/j-arb/fsolve-js", "license": "GPL-3.0-or-later", "files": [ "/build", "/types" ], "repository": { "type": "git", "url": "https://github.com/j-arb/fsolve-js.git" }, "type": "module", "main": "build/index.js", "types": "types/index.d.ts", "author": { "name": "Juan Esteban Arboleda Restrepo", "email": "juanesteban.arboledagc@gmail.com" }, "devDependencies": { "@types/mathjs": "^9.4.2", "typescript": "^5.4.5" }, "dependencies": { "mathjs": "^13.0.0" } }