How to optimize a function?

1 次查看(过去 30 天)
f(x)=x^2+2x-3
x belong to [0,20]
i- How can I optimize the function in matlab?
  3 个评论
Ammy
Ammy 2018-5-14
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 2018-5-14
Use "fmincon" with the bound constraints x>=0 and x<=20.

请先登录,再进行评论。

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Nonlinear Optimization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by