Solving Integral in matlab
Mostrar comentarios más antiguos
I need to solve this integral in matlab

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
Respuestas (2)
Dyuman Joshi
el 17 de Abr. de 2023
Editada: Dyuman Joshi
el 17 de Abr. de 2023
1 comentario
SHAMA NOREEN
el 17 de Abr. de 2023
syms s
a=sym('1');
b=sym('71/100');
c=sym('53/100');
f = 1/((s+a^2)*(s+a)*(s+b)*(s+c));
F = a*b*c/2*int(f)
limit(F-subs(F,s,0),s,Inf)
Categorías
Más información sobre Symbolic Math Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

