其他分享
首页 > 其他分享> > 第三章 非线性规划

第三章 非线性规划

作者:互联网

注意:请安装 TeX All The Things 这款Chrome浏览器插件才能正确显示公式。

链接如下:https://chrome.google.com/webstore/detail/tex-all-the-things/cbimabofgmfdkicghcadidpemeenbffn

 


 

Matlab中非线性规划的数学模型:

\[\begin{gathered}
\begin{array}{*{20}{c}}
{}
\end{array}\begin{array}{*{20}{c}}
{}
\end{array}\min \begin{array}{*{20}{c}}
{}
\end{array}f(x) \hfill \\
s.t.\left\{ \begin{gathered}
A \cdot x \leqslant b, \hfill \\
Aeq \cdot x = beq, \hfill \\
c(x) \leqslant 0, \hfill \\
ceq(x) = 0, \hfill \\
lb \leqslant x \leqslant ub. \hfill \\
\end{gathered} \right. \hfill \\
\end{gathered} \]

 

Matlab中的命令是:

[x,fval]=fmincon(fun,x0,A,b,Aeq,beq,lb,ub,nonlcon,options)

  

标签:begin,第三章,gathered,非线性,hfill,end,array,规划,leqslant
来源: https://www.cnblogs.com/250101249-sxy/p/11246270.html