How to transmit variables in problem structure

3 次查看(过去 30 天)
I am trying to set up a problem structure for fmincon
...
gs = GlobalSearch;
problem = createOptimProblem('fmincon','objective', @objective, 'x0', x0, ...
'Aineq', A, 'bineq', B, 'Aeq', Aeq, 'beq', Beq, 'lb', lb, ...
'ub', ub, 'nonlcon', nonlincon, 'options', optoptim);
run(gs,problem)
However the function 'objective' needs some values inserted
function [f,g] = objective(x0,t1,t2,t3,t4,t5)
...
How can I transmit the values t1,...,t5 ? They are vectors I define earlier in the code

采纳的回答

Stephen23
Stephen23 2020-9-14
编辑:Stephen23 2020-9-14
You need to parameterize the function:
For example using an anonymous function:
t1 = ..;
t2 = ..;
t3 = ..;
t4 = ..;
t5 = ..;
problem = createOptimProblem(.., 'objective', @(x)objective(x,t1,t2,t3,t4,t5), ..)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Global or Multiple Starting Point Search 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by