Solve equation in interval
古いコメントを表示
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
採用された回答
その他の回答 (1 件)
syms x
solve([diff(x^2*exp(-x)), x <= 1, x >= -1])
カテゴリ
ヘルプ センター および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!