1.0.2 • Published 4 years ago

numerical-method v1.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

This is a npm package to solve mathematical equations using the core numerical methods. Do check out the package and feedback, suggestion, contribution everything are welcomed.

Numerical Method

This is a npm package to solve mathematical equations using the core numerical methods.

Install

$ npm i numerical-method

Usage

const numerical_method = require('numerical-method');
// Load the package.

console.log(numerical_method.bisection("x^2-5",1,2,0.001);)
// Bisection Method to solve the equation x^2-5 with a and b as 1 and 2 and tolerance value 0.001.