0.0.3 • Published 9 years ago

newton-raphson v0.0.3

Weekly downloads
92
License
MIT
Repository
-
Last release
9 years ago

newton-raphson

JavaScript implementation of the Newton-Raphson method for approximating roots of a real-valued function. See Wikipedia for details on the theory.

Usage

var findRoot = require('newton-raphson');

function f(x) {
  return x * x - 2;
}
function fprime(x) {
  return 2 * x;
}
var initialGuess = 1;

findRoot(f, fprime, 1);
// 1.4142135623730951