mengzaishanda 发表于 2009-4-10 10:31

fmincon - Undefined function or variable

clear
x0=;
lb=;
ub=;
options=optimset('largescale','off','display','iter');
=fmincon(@objfun,x0,[],[],[],[],lb,ub,@confun,options)

function f=objfun(x);
f=x1+x2+x3+x4+x5+x6;

function =confun(x)
c=;
ce=[];
这样求的的解怎么不对啊?
请高手指教。

[ 本帖最后由 ChaChing 于 2009-4-21 20:10 编辑 ]

ChaChing 发表于 2009-4-10 15:32

建议看下本版规则! 求助完整格式:出错代码和出错提示

mengzaishanda 发表于 2009-4-21 17:27

回复 沙发 ChaChing 的帖子

呵呵!已经解决了!谢谢!

ChaChing 发表于 2009-4-21 20:10

我来补齐出错代码, 如下
??? Error using ==> fmincon
FMINCON cannot continue because user supplied objective function failed with the following error:
Undefined function or variable 'x1'.

Error in ==> zzz at 6
=fmincon(@objfun,x0,[],[],[],[],lb,ub,@confun,options)

大家时间都有限, 若能给齐完整资讯, 别人较容易了解状况并回覆!
发问者亦能以最快的速度解决问题, 天助自助者!
页: [1]
查看完整版本: fmincon - Undefined function or variable