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

    function fillfacs = getFillFactors(obj, varargin)
%GETFILLFACTORS Return fill factors 
%
%   FILLFACS = GETFILLFACTORS(OBJ) returns the fill factors for all the
%   tables in OBJ.
%
%   FILLFACS = GETFILLFACTORS(OBJ, pTABS) returns the fill factors for the
%   specified tables  
%
%   See also CGOPTIMTABLEFILLER/SETFILLFACTORS

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


% Find index of the specified tables in the table filler
inds = pGetTablesIdx(obj, varargin{:});

% If ok, return the information
fillfacs = obj.fillfactors(inds);