Use the Gaussian method to evaluate integrals
gaussint(f, x, w)
gauss.legendre(f, m = 5)
gauss.laguerre(f, m = 5)
gauss.hermite(f, m = 5)
f | function to integrate |
---|---|
x | list of evaluation points |
w | list of weights |
m | number of evaluation points |
the value of the integral
The gaussint
function uses the Gaussian integration to
evaluate an integral. The function itself is a driver and expects
the integration points and associated weights as options.
Other integration:
adaptint()
,
giniquintile()
,
mcint()
,
midpt()
,
revolution-solid
,
romberg()
,
simp38()
,
simp()
,
trap()