Code covered by the BSD License  

Highlights from
Statistical Learning Toolbox

from Statistical Learning Toolbox by Dahua Lin
Functions for statistical learning, pattern recognition and computer vision, covering many topics.

Description of display
Home > sltoolbox > ExpDL > @dataset > display.m

display

PURPOSE ^

DISPLAY displays the dataset fields.

SYNOPSIS ^

function display(DS)

DESCRIPTION ^

DISPLAY displays the dataset fields.

CROSS-REFERENCE INFORMATION ^

This function calls:
  • disp DISP displays the dataset fields
  • get GET gets the properties of the dataset
  • get GET Gets properties of a logger
This function is called by:

SOURCE CODE ^

0001 function display(DS)
0002 %DISPLAY displays the dataset fields.
0003 
0004 if isequal(get(0,'FormatSpacing'),'compact')
0005     disp([inputname(1) ' =']);
0006     disp(DS);
0007 else
0008     disp(' ');
0009     disp([inputname(1) ' =']);
0010     disp(' ');
0011     disp(DS);
0012 end

Generated on Wed 20-Sep-2006 12:43:11 by m2html © 2003

Contact us at files@mathworks.com