Solve equation in interval
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Veronika Puskelova
il 29 Nov 2020
Modificato: Walter Roberson
il 22 Apr 2021
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 Commenti
Risposta accettata
Setsuna Yuuki.
il 29 Nov 2020
Modificato: Setsuna Yuuki.
il 29 Nov 2020
You can try:
syms x
f = x^2*exp(-x)
fder = diff(f,x,1)
vpasolve(fder,[-1 1]) %change solve
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!