Why Can't int Find a Simple Integral?
Show older comments
syms x real
E(x) = 99/50*dirac(x) + rectangularPulse(0, 300, x)/30000
int on first term yields expected result
int(99/50*dirac(x),x,-inf,inf)
int on second term yields expected result
int(rectangularPulse(0, 300, x)/30000,x,-inf,inf)
int on sum fails
int(E(x),x,-inf,inf)
Shouldn't that work?
Accepted Answer
More Answers (1)
Tips
- In contrast to differentiation, symbolic integration is a more complicated task. If int cannot compute an integral of an expression, check for these reasons:
- The antiderivative does not exist in a closed form.
- The antiderivative exists, but int cannot find it.
If int cannot compute a closed form of an integral, it returns an unresolved integral.
Try approximating such integrals by using one of these methods:
- For indefinite integrals, use series expansions. Use this method to approximate an integral around a particular value of the variable.
- For definite integrals, use numeric approximations.
Look into Tips section of page for that reason, Going by tips section, if you consider the numeric approximations
syms x real
E(x) = 99/50*dirac(x) + rectangularPulse(0, 300, x)/30000
int(E(x),x,-4,4) % with a numeric approximation it works
1 Comment
Categories
Find more on Assumptions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!