integral definite, what is the code to implement it?
Mostrar comentarios más antiguos
I have to imlement this integral...help.
3 comentarios
darova
el 23 de Sept. de 2019
What have you done already? What about analytical solution
Antonino Alesci
el 23 de Sept. de 2019
darova
el 23 de Sept. de 2019
What are you trying to say?
Respuestas (2)
Basil C.
el 23 de Sept. de 2019
Walter Roberson
el 23 de Sept. de 2019
Assuming omega is a numeric vector and that an output is to be created for each:
syms pi rho Omega W r R
expr = 2*pi*rho*(Omega- W/2)*W*r^3;
Tn_inf = int(expr, r, 0, R);
all_Tn_inf = subs(Tn_inf, Omega, omega);
Categorías
Más información sobre Calculus 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!