npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

legendre-poly

1.0.0

@jaspervdg

npmHomeRepoSnykSocket
Downloads:2
$ npm install legendre-poly
DailyWeeklyMonthlyYearly

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