1.0.3 • Published 8 years ago

quadratic v1.0.3

Weekly downloads
2
License
ISC
Repository
-
Last release
8 years ago

Quadratic root solver

An example of a quadratic root solver function with callback.

Installing the package locally

npm install quadratic

Example of running the package locally

create a test file for example: test.js

var solve = require('quadratic');

var result = solve.quadraticSolve(1,4,1); // result will contain 2 functions properties

console.log("Roots are: "+ result.root1() + " " + result.root2());

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago