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

    function s= size(L,dim);
%LOCALMULTI/SIZE

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

m= get(L.xregmulti,'currentmodel');
s= [numParams(m),1];
if nargin~=1
   s= s(dim);
end   
return