www.gusucode.com > mbcdesign 工具箱 matlab 源码程序 > mbcdesign/@contable1/getTable.m

    function [xBreakpoints, table] = getTable(con)
%GETTABLE   Get the breakpoints and values for the table
%
%  [XBREAKPOINTS, TABLE] = GETTABLE(CON)
%
%  See also CONTABLE1, CONTABLE1/SETTABLE.

%  Copyright 2000-2005 The MathWorks, Inc.

% Set the properties of the model
xBreakpoints = con.breakcols;
table        = con.table;

%------------------------------------------------------------------------------|
% EOF
%------------------------------------------------------------------------------|