source: prextra/getilablist.m @ 113

Last change on this file since 113 was 5, checked in by bduin, 14 years ago
File size: 595 bytes
Line 
1%GETILABLIST retrieve list of named identifiers
2%
3%   S=GETILABLIST(A)
4%
5% INPUT
6%    A      input dataset with ilab structure (see ENABLEILAB)
7%
8% OUTPUT
9%    S      cell-array with identifier names.
10%
11% DESCRIPTION
12% GETILABLIST returns a list of identifiers defined in a dataset.  The
13% dataset must support the user-defined named identifiers (see
14% ENABLEILAB).
15%
16% SEE ALSO
17% ENABLEILAB, REMOVEILAB, GETILAB, SETILAB, GETILABLIST
18
19% $Id: getilablist.m,v 1.1 2005/05/02 13:05:46 pavel Exp $
20
21function il=getilablist(a)
22   
23    isvalidilab(a);
24   
25    il=a.user.ilab.names;
26   
27    return;
Note: See TracBrowser for help on using the repository browser.