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

    classdef TableProviderSource < handle
    %TableProviderSource Abstract class defining table methods
    
    %  Copyright 2015 The MathWorks, Inc.

    methods (Abstract)
        [names, pointers] = getTableList(obj, type)
        [tableName, inputNames] = getTableFactorNames(obj, type, index)
        [breakPoints, values] = getTableValues(obj, type, index)
    end
    
end