Symbolic math integrals not solving at all

조회 수: 67 (최근 30일)
Florian Rössing
Florian Rössing 2021년 4월 30일
댓글: Taw Tha 2023년 4월 24일
Hi all, I am playing around with functions and the symbolic math toolbox.
I want to calculate an integral of a difficult function:
syms t t0 tau x;
syms l(t,t0,tau);
l(t,t0,tau)= exp(-1/2*exp(-(t-t0)/tau));
syms f(t,t0,tau);
f(t,t0,tau)= exp(-1/2*((t-t0)/tau));
syms p(t,t0,tau);
p(t,t0,tau)=l(t,t0,tau)*f(t,t0,tau);
It can not integrate p directly, which is not that difficult, wolfram alpha does is. But anyhow, I'll help a little and do the substitution:
p=tau*subs(p,(t-t0)/tau,x)
int(p,x,-inf,inf)
But it still just comes up with nothing. It just puts out a formated version of my input instead of calculating the integral.
The answer should be
sqrt(2*pi)*tau
Did I use the toolbox wrong or is it just not that powerfull?
  댓글 수: 3
Florian Rössing
Florian Rössing 2021년 4월 30일
Thanks for your reply.
Actually it does not matter if you integrate with respect to t or t-t0, t0 just shifts the function along the t axis, but has no influence on the shape. The integral is independent of t0. In the first integral I want it to integrate by t.
However, the second integral clearly states to integrate by x, which still doesnt work.
Walter Roberson
Walter Roberson 2021년 7월 29일
When I take the expression over to Maple and convert the exp() into sinh cosh, then Maple is able to integrate the system. However, I do not seem to be able to do the same thing for MATLAB.

댓글을 달려면 로그인하십시오.

채택된 답변

Tanmay Das
Tanmay Das 2021년 7월 29일
Your function has no obvious closed form integral. You need to switch to numeric integration, such as with integral() or vpaintegral() which will require you to have a numeric value for x. Similar question has already been answered here:
Also, the same is mentioned in the Tips Section of the int documentation:
You can go through the documentations on integral and vpaintegral to try integrate the same function:
  댓글 수: 8
Paul
Paul 2022년 4월 27일
Nope. Also doesn't work anymore in 2021B.
However, that code yields the closed form solution in 2020B.
In 2021B I had to change the expression for the integrand
int(simplify(expand(p(t,t0,tau),'IgnoreAnalyticConstraints',true),'IgnoreAnalyticConstraints',true),t,-inf,inf,'IgnoreAnalyticConstraints',true)
to get the same integrand as in in 2020B, at least by visual comparison. But even though the integrands were the same, 2021B int() still did not yield the closed form solution.
Taw Tha
Taw Tha 2023년 4월 24일
Thank you everyone here, I would also like to contribute that simplify('Steps', \*int steps\*)
intFuncky = simplify(int((sqrt(tao^2 - (t-tao)^2) * (t-tao)^2),t,0,2*tao),"Steps",100)
or
intFuncky = simplify(int(( f ,x ,a, b), "Steps" ,100);%100 chosen as a small steps count medium is 400 steps
matlab 2022b

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Assumptions에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by