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

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

%  Copyright 2000-2005 The MathWorks, Inc.

xBreakpoints = c.breakcols;
yBreakpoints = c.breakrows;
table        = c.table;

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