Global search and Handle function specification

The original code was using "fmincon" to minimize the function MSM_likelihood below:
[parameters,LL,exitflag,output]=fmincon('MSM_likelihood',startingvals,[],[],[],[],LB,UB, [],options,kbar,data,A_template);
HOWEVER, I am trying to run the optimization by using Global Search instead and that requires a function handle, which I believe I used sixmin for that. My code is below:
sixmin = @(input,kbar,data,A_template,estim_flag)MSM_likelihood;
opts = optimoptions(@fmincon,'Algorithm','interior-point');
problem = createOptimProblem('fmincon','x0',startingvals,...
'objective',sixmin(input,kbar,data,A_template,estim_flag),'lb',LB,'ub',UB,...
'options',opts);
gs = GlobalSearch;
[x,f] = run(gs,problem)
Somehow, the code doesn't run as expected. Please help! I really appreciate it!

답변 (2개)

Walter Roberson
Walter Roberson 2016년 2월 26일

0 개 추천

'objective' needs to be followed by a function handle, but instead you are following it by the result of calling sixmin on particular parameters. You should probably just have sixmin (no parameters following) at that point.

댓글 수: 4

Hello Walter,
Thank you for a quick reply. Seems like the code ran a little bit but I ran into another problem.
Matlab shows error with these codes: sixmin = @(input,kbar,data,A_template,estim_flag)MSM_likelihood;
input = [estim_flag(1);input;estim_flag(2);estim_flag(3)];
Could you please let me know if the syntax is correct for the two listed? Thank you.
When that function handle is invoked with five input arguments, it will call MSM_likelihood with ZERO input arguments. I'm guessing that's not what you want. If you want to pass all five inputs into MSM_likelihood:
sixmin = @(input,kbar,data,A_template,estim_flag) ...
MSM_likelihood(input,kbar,data,A_template,estim_flag);
I broke this definition across two lines using ... for ease of display in Answers, but you could put it all on one line if you want.
Hello Steven,
For some strange reason, Matlab shows:
Not enough input arguments.
Error in MSM_modified>@(input,kbar,data,A_template,estim_flag)MSM_likelihood(input,kbar,data,A_template,estim_flag) (line 72) MSM_likelihood(input,kbar,data,A_template,estim_flag);
Which is weird cause I put in 5 inputs? Do you have any idea? Thank you so much!
sixmin = @(input) MSM_likelihood(input,kbar,data,A_template,estim_flag);

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

Alan Weiss
Alan Weiss 2016년 2월 29일

0 개 추천

You might want to try the following line of code instead:
sixmin = @MSM_likelihood;
The function handle for fmincon must contain exactly one argument. See Passing Extra Parameters for more information.
Alan Weiss
MATLAB mathematical toolbox documentation

카테고리

도움말 센터File Exchange에서 Surrogate Optimization에 대해 자세히 알아보기

질문:

2016년 2월 26일

댓글:

2016년 3월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by