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

조회 수: 9 (최근 30일)
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

채택된 답변

Walter Roberson
Walter Roberson 2015년 6월 3일
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개)

Konstantinos Sofos
Konstantinos Sofos 2015년 6월 3일
Hi Carolin,
Have you seen Create Problem Structure ?
Regards,
  댓글 수: 1
Carolin Katzschke
Carolin Katzschke 2015년 6월 4일
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

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by