Socket
Socket
Sign inDemoInstall

deriv

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    deriv

numerical derivatives of one-variable functions


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Install size
6.91 kB
Created
Weekly downloads
 

Readme

Source

NPM version Build Status

deriv

numerical derivatives of one-variable functions

Installation and Usage

Installation via npm:

npm install deriv

Requiring the function takes one line:

var deriv = require("deriv");

Evaluating a derivative also:

x_prime = deriv(function(x){return x*x}, 3, 0.1);
console.log(x_prime)

Output:

{ res: 5.999999999999166, err: 0.15000000000437436 }

deriv(fun, x, h, [type])

The first parameter is the function for which the derivative should be evaluated. The function should have only one parameter, expecting a numeric value. The second parameter x is the value at which the derivative should be calculated, whereas h is an appropriately chosen step size. type is an optional string parameter, which can take either the value forward or central. Specifically, this module implements the algorithms used in the numerical differentiation functions of the GSL library and described in the book "S.D. Conte and Carl de Boor, Elementary Numerical Analysis: An Algorithmic Approach, McGraw-Hill, 1972".

Keywords

FAQs

Last updated on 16 Feb 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc