Matlab code to find optimal values for x and y

1 visualizzazione (ultimi 30 giorni)
Frey Okee
Frey Okee il 1 Apr 2015
Modificato: Walter Roberson il 25 Giu 2021
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

Risposte (1)

Walter Roberson
Walter Roberson il 25 Giu 2021
Modificato: Walter Roberson il 25 Giu 2021
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

Community Treasure Hunt

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

Start Hunting!

Translated by