integrate_trapezoid {alkahest} | R Documentation |
Trapezoidal Rule
Description
Approximates the definite integral by using the trapezoidal rule.
Usage
integrate_trapezoid(x, y, ...)
## S4 method for signature 'numeric,numeric'
integrate_trapezoid(x, y)
## S4 method for signature 'ANY,missing'
integrate_trapezoid(x)
Arguments
x , y |
A |
... |
Currently not used. |
Value
Returns a list
with two components x
and y
.
Author(s)
N. Frerebeau
See Also
Other integration methods:
integrate_rectangle()
Examples
## Calculate the area under the sine curve from 0 to pi
# integrate(f = function(x) x^3, lower = 0, upper = 2)
x <- seq(0, 2, len = 101)
y <- x^3
plot(x, y, type = "l")
integrate_rectangle(x, y, right = FALSE) # 3.9204
integrate_rectangle(x, y, right = TRUE) # 4.0804
integrate_trapezoid(x, y) # 4.0004
[Package alkahest version 1.2.0 Index]