integration
2 views (last 30 days)
Show older comments
syms is a command or not? how to find integration?
0 Comments
Answers (2)
Paulo Silva
on 18 Aug 2011
yes and no, to do symbolic integration use int
syms x
int(x*log(1 + x), 0, 1)
0 Comments
Walter Roberson
on 18 Aug 2011
syms uses command/function duality, as is often the case for save() and load().
syms is part of the Symbolic Toolbox and is not defined if you do not have that toolbox.
For numeric integration, see http://www.mathworks.com/help/techdoc/ref/f16-5872.html#f16-6472 and http://www.mathworks.com/help/techdoc/ref/polyint.html and http://www.mathworks.com/help/techdoc/ref/f16-5872.html#f16-6443 and http://www.mathworks.com/help/techdoc/ref/trapz.html (and http://www.mathworks.com/help/techdoc/ref/cumtrapz.html)
0 Comments
See Also
Categories
Find more on Calculus 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!