www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/@xregmodel/constraints.m

    function [LB,UB,A,b,nlcon,optparams]= constraints(m,X,Y);
% MODEL/CONSTRAINTS

%  Copyright 2000-2004 The MathWorks, Inc. and Ford Global Technologies, Inc.




% upper and lower bounds for model
LB=[];
UB=[];

% linear constraints
A=[];
b=[];

% nonlinear constraints
nlcon= 0;

% optimisation parameters
optparams=[];