Why can't I calculate the definite integral?

조회 수: 2 (최근 30일)
Nikola Ostojic
Nikola Ostojic 2021년 1월 18일
댓글: Nikola Ostojic 2021년 1월 18일
h_min=0.5;
h_max=1.16;
pom_lc=1.21;
syms t
f=1-exp(t/pom_lc)
F=int(f, t, [h_min h_max])
answer:
f = 1 - exp((100*t)/121)
F = 33/50 - (121*exp(50/121)*(exp(6/11) - 1))/100
Why can't I calculate the integral?

채택된 답변

David Hill
David Hill 2021년 1월 18일

추가 답변 (1개)

madhan ravi
madhan ravi 2021년 1월 18일
h_min=0.5;
h_max=1.16;
pom_lc=1.21;
syms t
f = 1-exp(t/pom_lc)
f = 
F = vpaintegral(f, t, [h_min h_max]) % double(), vpa() will also work
F = 

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by