kiryshinpackage
v3.0.6
Published
none
Readme
Name moduele: solveQuadratic
Description: Solves simple quadratic equations
Installation: use command 'npm install kiryshinpackage' in terminal Full module locat in file "MyModule.js"
How to use: connect module via Node.js or link in tag In command takes 3 arguments a, b and c as per example "ax² - bx + c = 0". The result is an array with roots and a discriminant. For example:
const solveQuadratic = require('solve-quadratic'); const result = solveQuadratic(1, -3, 2); console.log(result);
RESULT: [1, 1] , 1 (exemple)
Licence: ISC
Author: Ilya Kiryushin
