how to write a user defined function that calculates the maximum or minimum of a quadratic equation of the form

조회 수: 16 (최근 30일)
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

답변 (1개)

Ildeberto de los Santos Ruiz
Ildeberto de los Santos Ruiz 2019년 11월 1일
Try this:
---------------------
f = @(x) x^2-5*x+6;
initial = 0;
fminsearch(f,initial)
---------------------
To find a maximum, use -f instead of f.

카테고리

Help CenterFile Exchange에서 Quadratic Programming and Cone Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by