Integrate (wrapper for dealing with infinite bounds)

Version 1.0.1.0 (1.68 KB) by AS
A wrapper for quad to deal with inf bounds.
1.2K Downloads
Updated 31 Mar 2016

View License

A wrapper for quad (or any other integration function) to deal with infinite bounds.
This basically does the transformations for you to do improper integrals. For example, what this does is:

int(f(x), 1, inf) = int( (1/x^2) f(1/x), 0, 1)

For example, if I wanted the integral of exp(-x^2) from 0 to infinity, I would just enter:
integrate(@(x)exp(-x.^2),0,inf)

And this function would do the rest of the work.

Cite As

AS (2024). Integrate (wrapper for dealing with infinite bounds) (https://www.mathworks.com/matlabcentral/fileexchange/21417-integrate-wrapper-for-dealing-with-infinite-bounds), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2007a
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.1.0

Just updating for BSD license. No changes to file.

1.0.0.0