国产成人毛片视频|星空传媒久草视频|欧美激情草久视频|久久久久女女|久操超碰在线播放|亚洲强奸一区二区|五月天丁香社区在线|色婷婷成人丁香网|午夜欧美6666|纯肉无码91视频

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)簽: