www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/@mbcmodel/@localmodel/pInitialise.m

    function obj = pInitialise(obj, LM)
%PINITIALISE Private function.
%
%   PINITIALISE( MODEL, LOACLMOD )

%   Copyright 2006 The MathWorks, Inc.
%       .

% Potentially more checking here to distinguish different response types
if isa(LM, 'localmod')
    obj.super(mfilename('fullpath'), LM);
else
    error(message('mbc:mbcmodel:linearmodel:InvalidArgument1'));
end