请教如何大致判断求积分能否用符号运算解决。
Show older comments
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)
请教如何大致判断一道积分能否用符号运算解决?
Accepted Answer
More Answers (0)
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!