Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to do the matlab integral algorythm of a function using numerical methods?
1 次查看(过去 30 天)
显示 更早的评论
any idea ? The function is f=x^3+9/x.
0 个评论
回答(1 个)
Gopalkrishna Bhat
2015-5-5
Hi Altin,
Indefinite integration can be done in matlab using the int() function. For the above function the codes are
syms x;
int(x^3+9/x,x);
You integrate numerically if limits are provided using Trapezoidal method. http://in.mathworks.com/help/matlab/ref/trapz.html#bua4lsr
0 个评论
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!