You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
These functions are modified versions of the quadg.m and quad2dg.m files found in the NIT (Numerical Integration Toolbox)
The code has been vectorized in order to be able to perform fast integration of several integration limits. As before quadg and quad2dg only calculate one and two dimensional integrals, respectively, but you may specify several integration limits in a single call to the functions. It is also possible to integrate directly given functions enclosed in parenthesis
Example: integration from 0 to 2 and from 2 to 4 for x is done in a single call by:
>>quadg('(x.^2)',[0 2],[2 4])
ans=
2.6667 18.6667
similarly integration from 0 to 2 and from 2 to 4 for both x and y is done in a single call by:
quad2dg('(x.^2.*y)',[0 2],[2 4],[0 2],[2 4])
ans=
5.3333 112.0000
The files were tested under Matlab version 5.2.
Both quadg and quad2dg are not dependent on the Numerical Integration Toolbox (NIT) or the distchk function in the Statistics Toolbox anymore.
Cite As
Per A. Brodtkorb (2026). quadg/quad2dg (https://www.mathworks.com/matlabcentral/fileexchange/33-quadg-quad2dg), MATLAB Central File Exchange. Retrieved .
General Information
- Version 1.0.0.0 (7.15 KB)
-
No License
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0.0.0 | Removed the dependency on other toolboxes so that the files are now self contained. |
