卖逼视频免费看片|狼人就干网中文字慕|成人av影院导航|人妻少妇精品无码专区二区妖婧|亚洲丝袜视频玖玖|一区二区免费中文|日本高清无码一区|国产91无码小说|国产黄片子视频91sese日韩|免费高清无码成人网站入口

Matlab中的fmincon函數(shù)的原理是什么?

網(wǎng)友解答: fmincon attempts to solve problems of the form:min F(X) subject to: A*X <= B, Aeq*X

網(wǎng)友解答:

fmincon attempts to solve problems of the form:min F(X) subject to: A*X <= B, Aeq*X = Beq (linear constraints)X C(X) <= 0, Ceq(X) = 0 (nonlinear constraints)LB <= X <= UB (bounds)fmincon implements four different algorithms: interior point, SQP, activeset, and trust region reflective. Choose one via the option Algorithm:for instance, to choose SQP, set OPTIONS = optimset('Algorithm','sqp'),and then pass OPTIONS to fmincon.可以看出它有四種算法。使用help fmincon看看就知道了!

標(biāo)簽: