Differences between revisions 2 and 3
Revision 2 as of 2025-12-17 21:12:54
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.


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.


CategoryRicottone

MATLAB/Integral (last edited 2026-01-05 17:10:54 by DominicRicottone)