create_num_antiD {mosaicCalc} | R Documentation |
Create a numerical anti-derivative function which can be called with one or many values of the w.r.t. input
Description
This will typically be called directly from antiD()
when an
integral can't be handled symbolically.
Usage
create_num_antiD(tilde, ..., lower = NULL, .tol = 1e-04)
Arguments
tilde |
Tilde expression for the function to be anti-differentiated. Right-hand side will be the w.r.t. variable |
... |
arguments and parameters to the function described by |
lower |
Optional lower bound of integration. Useful to avoid domain problems with the function being integrated, but not generally needed. |
.tol |
Numerical tolerance for the integration |
Value
a function with the w.r.t. variable as the first argument. The function is a wrapper around numerical integration routines.
[Package mosaicCalc version 0.6.4 Index]