View source: R/integrate_expcubic.R
integrate_expcubic | R Documentation |
Integrates a function of the form \exp(a*x^3+b*x^2+c*x+d)
over an interval.
integrate_expcubic(a, b, c, d, lower, upper, minus_const = 0)
a , b , c , d |
The coefficients of |
lower , upper |
Numeric values to specify the limits of integration. |
minus_const |
A numeric to be subtracted in the exponent to
ensure the finite-ness of the integration result. Default is |
A numeric of the integral of \exp(a*x^3+b*x^2+c*x+d)
from lower
to upper
.
integrate_expcubic(a = 1, b = -2, c = 3, d = -2, lower = -2, upper = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.