www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/mbcgetdataloadingfcn.m

    function f = mbcgetdataloadingfcn
%MBCGETDATALOADINGFCN Get a list of checked in data loading functions
%
%  FCNS = MBCGETDATALOADINGFCN gets a structure array containing the
%  currently checked in data loading function options in the Model Browser.
%  The return array FCNS contains three fields
%   FCNS.function - the name of the function used to load that type of data
%   FCNS.filterSpec - the filter specification used during checkin
%   FCNS.fileType - the type name loaded by the function
%
%  Example usage:
%
%    fcns = mbcgetdataloadingfcn
%
%  See also MBCMODEL, MBCGETDATALOADINGFCNFOR, MBCCHECKINDATALOADINGFCN, MBCREMOVEDATALOADINGFCN

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


% Get current Data Loading preferences
p = getpref(mbcprefs('mbc'), 'DataLoading');
f = p.DataImportFunctions;