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

    function [fcns,names] = getoutputfunctions(obj)
%GETINPUTFUNCTIONS  Find calibration export functions.
%
%  [FCNS,NAMES] = GETOUTPUTFUNCTIONS(OBJ) finds calibration export
%  functions.  The function names FCNS and descriptions NAMES are returned.

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


fcns = methods(obj);
fcns = setdiff(fcns,pNotExportFunctions);
if nargout>1
    names = cell(size(fcns));
    for n=1:length(fcns)
        names{n} = feval(fcns{n},obj,'getname');
    end
end