Rev | Line | |
---|
[5] | 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 | |
---|
| 21 | function 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.