Romberg's adaptive integration
romberg(f, a, b, m, tab = FALSE)
f | function to integrate |
---|---|
a | the lowerbound of integration |
b | the upperbound of integration |
m | the maximum number of iterations |
tab | if |
the value of the integral
The romberg
function uses Romberg's rule to calculate the
integral of the function f
over the interval from a
to b
. The parameter m
sets the number of intervals
to use when evaluating. Additional options are passed to the
function f
when evaluating.
Other integration:
adaptint()
,
gaussint()
,
giniquintile()
,
mcint()
,
midpt()
,
revolution-solid
,
simp38()
,
simp()
,
trap()
Other newton-cotes:
adaptint()
,
giniquintile()
,
midpt()
,
simp38()
,
simp()
,
trap()