Owning Class: integration
Requires: MathScript RT Module
c = quadn_trap(y)
c = quadn_trap(x, y)
Legacy Name: trapz
Computes numerical integration using the trapezoidal method.
| Name | Description |
|---|---|
| x | Specifies the x-values of the function you want to integrate. x is a real vector. |
| y | Specifies the y-values of the function you want to integrate. y is a real vector or matrix of the same size as x. If y is a matrix, c returns the integrals of all columns of y. |
| Name | Description |
|---|---|
| c | Returns the numerical integration of y. c is a scalar or vector. |
Y = [0, 1, 2, 3, 4]
C = quadn_trap(Y)