7017
|
1 ## Copyright (C) 1996, 1998, 2000, 2002, 2004, 2005, 2006, 2007 |
|
2 ## Auburn University. All rights reserved. |
3430
|
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. |
3430
|
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. |
3430
|
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/>. |
3430
|
19 |
3452
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} sysidx (@var{sys}, @var{sigtype}, @var{signamelist}) |
|
22 ## Return indices of signals with specified signal names |
|
23 ## inputs given a system data structure @var{sys}, a signal type to be |
|
24 ## selected @var{sigtype} (@code{"in"}, @code{"out"}, @code{"st"}), and |
|
25 ## a list of desired signal names @var{signamelist}. |
|
26 ## @end deftypefn |
3430
|
27 |
|
28 function idxvec = sysidx (sys, sigtype, signamelist) |
|
29 |
|
30 if (nargin != 3) |
6046
|
31 print_usage (); |
4030
|
32 elseif (! isstruct (sys)) |
3430
|
33 error ("sys must be a system data structure"); |
5443
|
34 elseif (! ischar (sigtype)) |
3430
|
35 error ("sigtype must be a string"); |
|
36 elseif (rows (sigtype) != 1) |
|
37 [nr, nc] = size (sigtype); |
|
38 error ("sigtype (%d x %d) must be a single string", nr, nc); |
|
39 endif |
|
40 |
|
41 ## extract correct set of signal names values |
4844
|
42 [idxvec, msg] = cellidx ({"in", "out", "st", "yd"}, sigtype); |
3430
|
43 if (msg) |
|
44 error ("invalid sigtype = %s", sigtype); |
|
45 endif |
|
46 |
|
47 syssiglist = sysgetsignals (sys, sigtype); |
4844
|
48 [idxvec, msg] = cellidx (syssiglist, signamelist); |
3430
|
49 if (length (msg)) |
|
50 error ("sysidx (sigtype = %s): %s", sigtype, |
|
51 strrep (msg, "strlist", "signamelist")); |
|
52 endif |
|
53 |
|
54 endfunction |