怎么用matlab求下图目标线性函数的最优解,最好有程序
2个回答
展开全部
安装cvx工具包
cvx_begin
variables a b c d e
minimize(0.2*a+0.7*b+0.4*c+0.3*d+0.5*e)
subject to
0.3*a+2*b+c+0.6*d+1.8*e>=70;
0.1*a+0.05*b+0.02*c+0.2*d+0.05*e>=3;
0.05*a+0.1*b+0.02*c+0.2*d+0.08*e>=10;
a>=0;
b>=0;
c>=0;
d>=0;
e>=0;
cvx_end
cvx_begin
variables a b c d e
minimize(0.2*a+0.7*b+0.4*c+0.3*d+0.5*e)
subject to
0.3*a+2*b+c+0.6*d+1.8*e>=70;
0.1*a+0.05*b+0.02*c+0.2*d+0.05*e>=3;
0.05*a+0.1*b+0.02*c+0.2*d+0.08*e>=10;
a>=0;
b>=0;
c>=0;
d>=0;
e>=0;
cvx_end
追问
你算的结果是多少
追答
a =0; b = 0; c =0; d = 39.7436; e = 25.6410; 最小值是 24.7436
2016-06-26
展开全部
添加一个sScrollY属性
var height=$(window).height();
$(document).ready(function() {
$('#example').dataTable(
{
"sScrollY": height
});
var height=$(window).height();
$(document).ready(function() {
$('#example').dataTable(
{
"sScrollY": height
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询