legendre-poly
v1.0.0
Published
Coefficients of Legendre polynomials
Downloads
13
Readme
legendre-poly
Returns the coefficients of the nth Legendre polynomial.
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