Why can't I calculate the definite integral?
5 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
その他の回答 (1 件)
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 = vpaintegral(f, t, [h_min h_max]) % double(), vpa() will also work
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!