Solve equation in interval
35 次查看(过去 30 天)
显示 更早的评论
f = x^2*exp(-x) % at interval x is <-1, 1>
fder = diff(f,x,1)
i need solution for fder in interval <-1 1>, but command solve(fder, [-1 1]) not work pls help
0 个评论
采纳的回答
Setsuna Yuuki.
2020-11-29
编辑:Setsuna Yuuki.
2020-11-29
You can try:
syms x
f = x^2*exp(-x)
fder = diff(f,x,1)
vpasolve(fder,[-1 1]) %change solve
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!