非线性规划

Posted 250101249-sxy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了非线性规划相关的知识,希望对你有一定的参考价值。

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

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

 


 

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

\[\begingathered
\beginarray*20c

\endarray\beginarray*20c

\endarray\min \beginarray*20c

\endarrayf(x) \hfill \\
s.t.\left\ \begingathered
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 \\
\endgathered \right. \hfill \\
\endgathered \]

 

Matlab中的命令是:

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

  

以上是关于非线性规划的主要内容,如果未能解决你的问题,请参考以下文章

python非线性规划用啥模块

fgoalattain能不能解决非线性规划问题 急需!!!!!!望高手指点

MatlabLingo:数模10-非线性规划与01规划模型

备战数学建模19-数学规划问题

数模常用算法系列--整数线性规划(分枝定界法)整数非线性规划(蒙特卡洛法)

线性规划(LP)基本概念和搜索算法