/gauss-legendre

Gauss-Legendre quadrature abscissas and weights calculation in JS

Primary LanguageJavaScriptMIT LicenseMIT

Given the lower and upper limits of integration x1 and x2, this routine returns arrays x and w of length n, containing the abscissas and weights of the Gauss-Legendre n-point quadrature formula.

Usage

import gauleg from 'gauss-legendre';

const { x, w } = gauleg(n, x1, x2);