cumquad
Version 1.0.0.0 (3.25 KB) by
Adam Wyatt
Cumulative integration of analytical functions via adaptive simpsons quadrature.
This function is an adaptation of Matlab's "quad" function to return the cumulative integration of an analytical function.
e.g. compute integral:
I(t) = int(0..t)[1/(tau^3 - 2*tau - 5) d_tau] for t=0..3
[I, t] = cumquad(@(tau) 1./(tau.^3-2*tau-5), 0, 3);
This function is almost identical to the quad.m function (v6 upward) except it returns the integral a..x where x=a..b and the corresponding x values.
Cite As
Adam Wyatt (2025). cumquad (https://www.mathworks.com/matlabcentral/fileexchange/13538-cumquad), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2006a
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
Find more on Numerical Integration and Differential Equations in Help Center and MATLAB Answers
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Version | Published | Release Notes | |
---|---|---|---|
1.0.0.0 |