Find minimum points matlab
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hey,
I need to find minimum points. I wrote this code -
syms x real
f=(x^2)-4*x+9;
d1=diff(f,1);
res=solve(d1==0);
min(vpa(res,4))
and i get the answer - is this correct? and if I want to find the Y, so what I need to do?
ans =
2.0
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!