楼主: 23pengpeng
1274 1

[问答] matlab里一个程序的实现 [推广有奖]

  • 1关注
  • 0粉丝

讲师

78%

还不是VIP/贵宾

-

威望
0
论坛币
4061 个
通用积分
0.0001
学术水平
1 点
热心指数
2 点
信用等级
1 点
经验
13618 点
帖子
402
精华
0
在线时间
784 小时
注册时间
2005-10-29
最后登录
2024-3-8

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
下面是matlab里给出的一个例子,在MATLAB完整的程序应该是什么样的?非常谢谢

Find values of x that minimize f(x) = –x1x2x3,starting at the point x = [10;10;10],subject to the constraints:
0 ≤ x1 +2x2 + 2x3 ≤72.
  • Write a file that returns a scalar value f ofthe objective function evaluated at x:
    function f = myfun(x)f = -x(1) * x(2) * x(3);
  • Rewrite the constraints as both less than or equalto a constant,
    x1–2x2–2x3 ≤0
    x1 + 2x2 +2x3≤ 72
  • Since both constraints are linear, formulate themas the matrix inequality A·xb,where
    A = [-1 -2 -2; ...      1  2  2];b = [0;72];
  • Supply a starting point and invoke an optimizationroutine:
    x0 = [10;10;10];    % Starting guess at the solution[x,fval] = fmincon(@myfun,x0,A,b);
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:MATLAB matla atlab Atl Lab MATLAB 程序

沙发
liuxin9023 发表于 2011-5-26 12:55:42 |只看作者 |坛友微信交流群
fmincon

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注cda
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-5-12 18:59