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

    function [fcns, names] = getNonFileFunctions(obj)
%GETNONFILEFUNCTIONS  Get the list of non-file-based import functions.
%
%   [FCNS, NAMES] = GETNONFILEFUNCTIONS(OBJ) returns the list of functions
%   and associated names that are available for importing from a
%   non-file-based source.

%   Copyright 2005 The MathWorks, Inc.


[fcns, names, fileflags] = getinputfunctions(obj);
fcns = fcns(~fileflags);
names = names(~fileflags);