gpt4 book ai didi

function - matlab:fmincon,将变量传递给 nonlcon

转载 作者:行者123 更新时间:2023-12-04 05:21:34 26 4
gpt4 key购买 nike

我知道这是一个愚蠢的问题,但我不知道如何解决它......假设我有类似的问题:

x = fmincon(@myfun,x0,A,b,Aeq,beq,lb,ub,@mycon)

后来:
function [c,ceq] = mycon(x)
c = ...
ceq = ...

如何将附加变量传递给 @mycon ,比如
function [c,ceq] = mycon(x, variable)
if variable == 1
c = ...
ceq = ...
else
c = ...
ceq = ...
end

谢谢:)

最佳答案

您通过 mycon作为匿名函数:

   x = fmincon(@myfun,x0,A,b,Aeq,beq,lb,ub,@(xx)mycon(xx,variable))

请注意 variable目前已修复 fmincon线被称为。

关于function - matlab:fmincon,将变量传递给 nonlcon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13641590/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com