Writing a code for symbolic integration
이전 댓글 표시
I'm trying to integrate the following

where


How do I write a code that will integrate this symbolically? I have been trying without success.
답변 (2개)
Setting
C1 = (T_i-T_inf)*(-C1*lambda_1/r0)*J1(lambda_1*r0/r0)
C2 = lambda_1^2*alpha/r0^2
your function is
f(t) = C1*exp(-C2*t)
An integral is
F(t) = -C1/C2*exp(-C2*t)
Thus
integral_{0}^{t} F(t') dt' = C1/C2*(1-exp(-C2*t))
By the way: My guess is that J1 is not a constant, but the Bessel function of the first kind.
Furthermore, I guess that T_i depends on t as well such that your integration is not corrrect.
Best wishes
Torsten.
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!