Matlab code to find optimal values for x and y

1 次查看(过去 30 天)
Can someone help me with Matlab code to find numerical solutions for optimal values of x and y which satisfy the following optimization problem?
where and and

回答(1 个)

Walter Roberson
Walter Roberson 2021-6-25
编辑:Walter Roberson 2021-6-25
min() cannot be differentiated, and most of the minimizers require (implicit) differentiation. So you need to take one of the following approaches:
  • use ga() from the Global Optimization Toolbox
  • use surrogate optimization
  • use patternsearch()
  • use fminmax() https://www.mathworks.com/help/optim/ug/fminimax.html
  • break the problem into pieces that do not individually use min(), use a normal optimizer such as fmincon() on the pieces, and then merge the pieces together

类别

Help CenterFile Exchange 中查找有关 Direct Search 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by