Substitution after differentiation (easy)?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to substitute the variable x after differentiating y with respect to x. Any ideas on the final step?
>> syms x;
>> y=5*x^2+6*x-3;
>> y1=diff(y,x);
after this I cannot use
>> x=3;
>> y1
because this just gives me y1 in terms of x
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 4 Jun. 2012
subs(y1)
Caution: the result in this case would be a symbolic number; use double() on the result if you need a floating point number that MATLAB itself can compute with.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!