How can I use structs as x input for Matlabs optimization methods?

8 vues (au cours des 30 derniers jours)
My functions look like that:
function area_rectangle = area_rectangle(input_variables)
if ~isfield(input_variables,'height') || ~isfield(input_variables,'width')
area_rectangle = NaN;
else
area_rectangle = input_variables.width * input_variables.height;
end
Suppose I want to use one of Matlabs optimization methods, e.g. fmincon, and pass a struct as input. How could I do that?
fmincon(@area_rectangle, input_variables, ...)
Error using fmincon (line 224)
FMINCON requires the following inputs to be of data type double: 'X0'.
Thanks in advance! Carolin

Réponse acceptée

Walter Roberson
Walter Roberson le 3 Juin 2015
You would not do that. Remember that the optimization routines control the values of x themselves, adjusting its value until the optimum value is found. The optimization routines have no idea how to update a struct.
You would instead use one of the optimization routines that can work on vectors of values, and you would pass the values of the fields as elements of x. For example,
function area = calc_area(x)
height = x(1,:);
width = x(2,:);
area = height .* width;
end
  1 commentaire
Carolin Katzschke
Carolin Katzschke le 4 Juin 2015
Okay. That was the answer I was looking for. Thank you very much.

Connectez-vous pour commenter.

Plus de réponses (1)

Konstantinos Sofos
Konstantinos Sofos le 3 Juin 2015
Hi Carolin,
Have you seen Create Problem Structure ?
Regards,
  1 commentaire
Carolin Katzschke
Carolin Katzschke le 4 Juin 2015
Hi Konstantinos, I had a closer look at the problem structure, but I tried to pass a struct for x/x0. As Walter stated, Matlabs optimization methods only work with double matrices. Thank you for your answer anyway. Regards, Carolin

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by