How to optimize a function?

1 回表示 (過去 30 日間)
Ammy
Ammy 2018 年 5 月 14 日
コメント済み: KALYAN ACHARJYA 2018 年 5 月 14 日
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)
  1 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 5 月 14 日
fun=@(x)x^2+2*x-3;

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNonlinear Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by