请教如何大致判断求积分能否用符号运算解决。
Afficher commentaires plus anciens
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)
请教如何大致判断一道积分能否用符号运算解决?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!