Solving Integral in matlab
1 回表示 (過去 30 日間)
古いコメントを表示
I need to solve this integral in matlab
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1358348/image.png)
Where a=1, b=0.71, c=0.53.
I have tried this in matlab
syms s
a=1;
b=0.71;
c=0.53;
f = 1/((s+a^2)*sqrt(((s+a)^2)*((s+b)^2)*((s+c)^2)));
F = int(f, 0, inf)
but I am unable to solve the problem
0 件のコメント
回答 (2 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!