Skip to content

D3R50N/js-math-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

js-math-lib

Math library in js

Install first ⚙️

npm install js-math-lib

Usage

const math_lib = require("js-math-lib");

var extrapolated = math_lib.extrapolateLinear([2, 3], [4, 6], 7);

console.log(extrapolated); // 14

To view all functions and globals, call the help method

math_lib.help(); // log all usable func in the console