How to optimize a function?

f(x)=x^2+2x-3
x belong to [0,20]
i- How can I optimize the function in matlab?

3 comentarios

Stephen23
Stephen23 el 14 de Mayo de 2018
Editada: Stephen23 el 14 de Mayo de 2018
@Noor Bano: what does "optimize the function" mean? What is the output that you want from this?
Ammy
Ammy el 14 de Mayo de 2018
How to maximize a function, or how to minimize a function, or in other words on which x value the function gives maximum or minimum value.
Torsten
Torsten el 14 de Mayo de 2018
Use "fmincon" with the bound constraints x>=0 and x<=20.

Iniciar sesión para comentar.

 Respuesta aceptada

Torsten
Torsten el 14 de Mayo de 2018

0 votos

x1=0;
x2=20;
fun=@(x)x^2+2x-3;
x = fminbnd(fun,x1,x2)

Más respuestas (0)

Preguntada:

el 14 de Mayo de 2018

Comentada:

el 14 de Mayo de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by