1.0.0 • Published 9 years ago

legendre-poly v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

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