www.gusucode.com > mbcdata 工具箱 matlab 源码程序 > mbcdata/@cgoptimtablefiller/private/pCheckFillFlags.m

    function ok = pCheckFillFlags(fillflags, tables)
%PCHECKFILLFLAGS Ensure the correct fillflags are set in the object
%
%   OK = PCHECKFILLFLAGS(FILLFLAGS, pTABS) determines whether the
%   supplied FILLFLAGS are valid for the object 

%   Copyright 2006 The MathWorks, Inc.

ok = all(islogical(fillflags)) && isequal(size(fillflags), size(tables));