Learn R Programming

alkahest (version 1.3.0)

integrate_trapezoid: Trapezoidal Rule

Description

Approximates the definite integral by using the trapezoidal rule.

Usage

integrate_trapezoid(x, y, ...)

# S4 method for numeric,numeric integrate_trapezoid(x, y)

# S4 method for ANY,missing integrate_trapezoid(x)

Value

Returns a list with two components x and y.

Arguments

x, y

A numeric vector. If y is missing, an attempt is made to interpret x in a suitable way (see grDevices::xy.coords()).

...

Currently not used.

Author

N. Frerebeau

See Also

Other integration methods: integrate_rectangle()

Examples

Run this code
## 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

Run the code above in your browser using DataLab