New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

jsequation-solver

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsequation-solver

solves linear equations systems by gauss-elimination

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

equation-solver

jseq-solver: solves linear equations systems by gauss-elimination

use

calculate linear equation system:

     1x+1y+1z=3
     2x-3y-1z=2
     4x-5y-1z=1

{"size":3,"matrix":[

     [1,1,1,3],
     [2,-3,-1,2],
     [4,-5,-1,1]
]}

put the equations in json format in the parameters, the last value of each line corresponds to the constant!

node eq-solver {"size":3,"matrix":[[1,1,1,3],[2,-3,-1,2],[4,-5,-1,1]]}

Keywords

math

FAQs

Package last updated on 05 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts