integral definite, what is the code to implement it?
이전 댓글 표시
I have to imlement this integral...help.
댓글 수: 3
darova
2019년 9월 23일
What have you done already? What about analytical solution
Antonino Alesci
2019년 9월 23일
darova
2019년 9월 23일
What are you trying to say?
답변 (2개)
Basil C.
2019년 9월 23일
Walter Roberson
2019년 9월 23일
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);
카테고리
도움말 센터 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!