Integration Help in exponential
显示 更早的评论
Hello Everyone
I would like to know, How do I integrate the follwoing equation. Limits are from 0 to t

Please any help would be appreciable.
Thank You
回答(1 个)
Did you try it? Why not make an effort? Surely you can do something.
syms t T
K(t) = exp(-t^1.3/27.290)*exp(-t/12.724)*t^0.3
int(K,[0,T])
So int is unable to find a solution. But that just means there is no symbolic solution, at least nothing int could find. I'm not totally surprised at that.
However, that does not mean nothing can be done. You can still find a numerical solution.
k = @(s) exp(-s.^1.3/27.290).*exp(-s/12.724).*s.^0.3;
kint = @(S) integral(k,0,S);
And now for any reasonable value of the upper end point limit for the integral, integral will yield a result.
kint(0.5)
Is there anything you can write down on paper? Nope. But then there are infinitely many simple problms you can write down with no analytical solution.
类别
在 帮助中心 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
