legendre-poly

1.0.0 • Public • Published

legendre-poly

Returns the coefficients of the nth Legendre polynomial.

build status

Example

var legendre_p = require("legendre-poly")
 
console.log(legendre_p(0))
console.log(legendre_p(1))
console.log(legendre_p(2))

Output

[1]
[0, 1]
[-0.5, 0, 1.5]

Install

Install using npm:

npm install legendre-poly

require("legendre-poly")(n)

Returns the coefficients of the nth Legendre polynomial in ascending degree.

License

(c) 2013 Mikola Lysenko. MIT License

Package Sidebar

Install

npm i legendre-poly

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • mikolalysenko
  • jaspervdg
  • hughsk
  • planeshifter
  • rreusser