Show older comments
请教一下,第一次使用MATLAB,int求函数不定积分求不出来,结果如下 ans =int(1/((x - 1)*(x + 1)^2)^(1/3), x) 谢谢解答😀
Answers (1)
Dongyue
on 22 Nov 2022
0 votes
如果int无法计算表达式的积分,请检查以下原因:
- 反导数不以封闭形式存在。
- 反导数存在,但int找不到它。
如果int不能计算一个封闭形式的积分,它返回一个未解决的积分。
尝试使用以下方法之一来近似计算此类积分:
- 对于不定积分,使用级数展开。使用此方法来近似围绕变量的特定值的积分。
详情请参考以下链接内容:
Categories
Find more on 数值积分和微分 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!