Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

deriv

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deriv

numerical derivatives of one-variable functions

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-83.33%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 16 Feb 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc