integral of a function

조회 수: 2 (최근 30일)
xinyu
xinyu 2013년 10월 24일
댓글: xinyu 2014년 3월 2일
I have an ans for integral calculation
R = piecewise([1/(T*k) < 0, (E0/(T*k) - (E0*Inf)/(T*k))/(1 + Inf*(- infinity/(T*k) - 1))], [0 < real(1/(T*k)), E0/(T*k)])
the truth is in my situation
0 < real(1/(T*k))
is always true, therefore what I need is just the result as
E0/(T*k)
because this result need to be insert into another equation to be simplified, I hope I can tell MATLAB that
0 < real(1/(T*k))
is true or I can extract the term
E0/(T*k)
from the piece-wise function. Can anyone please tell me how can I do it, thanks a lot.

채택된 답변

Walter Roberson
Walter Roberson 2013년 10월 25일
I suggest trying to use an assume() and then a simplify()
In Maple I would use
simplify(R) assuming 0 < real(1/(T*k))
  댓글 수: 1
xinyu
xinyu 2014년 3월 2일
that totally works, thanks a lot.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by