|
Size: 459
Comment: Link
|
← Revision 3 as of 2026-01-05 17:10:54 ⇥
Size: 481
Comment: Link
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| The '''`integral`''' function calculates an integral with respect to a single variable. | The '''`integral`''' function calculates an [[Calculus/Integral|integral]] with respect to a single variable. |
MATLAB integral
The integral function calculates an integral with respect to a single variable.
Contents
Usage
The integral function takes three arguments: a function handle and the bounds of integration.
f = @(x) (2.*x) integral(f, 0,Inf)
See also integral2 and integral3.
