7017
|
1 ## Copyright (C) 1996, 1998, 2000, 2002, 2003, 2004, 2005, 2007 |
|
2 ## Auburn University. All rights reserved. |
3431
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
7016
|
7 ## under the terms of the GNU General Public License as published by |
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3431
|
10 ## |
7016
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
3431
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3431
|
19 |
3459
|
20 ## -*- texinfo -*- |
3452
|
21 ## @deftypefn {Function File} {} is_signal_list (@var{mylist}) |
|
22 ## Return true if @var{mylist} is a list of individual strings. |
|
23 ## @end deftypefn |
3431
|
24 |
4462
|
25 function flg = is_signal_list (mylist) |
3431
|
26 |
4771
|
27 flg = iscell (mylist); |
|
28 if(flg) |
|
29 flg = (rows(mylist) == 1 | columns(mylist) == 1); |
|
30 end |
3431
|
31 if (flg) |
|
32 for ii = 1:length (mylist) |
5443
|
33 if (! (ischar (mylist{ii}) && rows (mylist{ii}) == 1)) |
3431
|
34 flg = 0; |
|
35 endif |
|
36 endfor |
|
37 endif |
|
38 |
|
39 endfunction |