how to write a user defined function that calculates the maximum or minimum of a quadratic equation of the form
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can we write a user-definedfunction that calculates maximum and minimum of an quadratic equation.
since i know how to find max and min of an array only.
This question has been troubling me for days. If anyone could solve it
0 Kommentare
Antworten (1)
Ildeberto de los Santos Ruiz
am 1 Nov. 2019
Try this:
---------------------
f = @(x) x^2-5*x+6;
initial = 0;
fminsearch(f,initial)
---------------------
To find a maximum, use -f instead of f.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Assembly 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!