请教如何大致判断求积分能否用符号运算解决。
古いコメントを表示
clear
syms x
f1=x*log(x)
s1=int(f1,x,1,2)
可以顺利得出s1 =log(4) - 3/4
而
clear
syms t x
ft=exp(-abs(sin(t)))
sx=int(ft,t,0,4)
却得出
Warning: Explicit integral could not be found.
sx =
int(exp(-abs(sin(t))), t == 0..4)
请教如何大致判断一道积分能否用符号运算解决?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!