Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

horner

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

horner

Evaluates polynomial

Source
npmnpm
Version
0.0.0
Version published
Weekly downloads
2
-77.78%
Maintainers
1
Weekly downloads
 
Created
Source

horner

Evaluates polynomials using Horner's rule.

Use

First install via npm:

npm install horner

Then you can use it as follows:

var horner = require("horner")


//Example:  Evaluate the polynomial 1 + 2 * x^2 at x = 2
console.log(horner([1, 0, 2], 2.0))

//Prints:  9

//Example:  Evaluate a complex polynomial
//
//      2 - 3i * x + (4 + 5i)*x^2
//
// At x = 1+2i

console.log(horner([[2, 0, 4]     //Real coefficients
                  , [0, -3, 5]]   //Imaginary coefficients
                  , [1, 2]))

//Prints: [-24,-2]

require("horner")(poly, z)

Evaluates the polynomial at the point z

  • poly is the coefficients of the polynomial arranged in increasing degree. If complex, is a pair of arrays, the first representing the real coefficients and the second representing the imaginary coefficients.
  • z is the point to evaluate the polynomial at. Either a scalar for a real valued function or a pair for a complex number.

Returns: A scalar for real results, a pair for complex results

Time Complexity: O(poly.length)

Credits

(c) 2013 Mikola Lysenko. MIT License

Keywords

polynomial

FAQs

Package last updated on 31 Mar 2013

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