3430
|
1 ## Copyright (C) 1996, 1998 Auburn University. All rights reserved. |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by the |
|
7 ## Free Software Foundation; either version 2, or (at your option) any |
|
8 ## later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but WITHOUT |
|
11 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 ## for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. |
|
18 |
3452
|
19 ## -*- texinfo -*- |
|
20 ## @deftypefn {Function File} {} sysidx (@var{sys}, @var{sigtype}, @var{signamelist}) |
|
21 ## Return indices of signals with specified signal names |
|
22 ## inputs given a system data structure @var{sys}, a signal type to be |
|
23 ## selected @var{sigtype} (@code{"in"}, @code{"out"}, @code{"st"}), and |
|
24 ## a list of desired signal names @var{signamelist}. |
|
25 ## @end deftypefn |
3430
|
26 |
|
27 function idxvec = sysidx (sys, sigtype, signamelist) |
|
28 |
|
29 if (nargin != 3) |
|
30 usage ("idxvec = sysidx (sys, sigtype, signamelist)"); |
4030
|
31 elseif (! isstruct (sys)) |
3430
|
32 error ("sys must be a system data structure"); |
|
33 elseif (! isstr (sigtype)) |
|
34 error ("sigtype must be a string"); |
|
35 elseif (rows (sigtype) != 1) |
|
36 [nr, nc] = size (sigtype); |
|
37 error ("sigtype (%d x %d) must be a single string", nr, nc); |
|
38 endif |
|
39 |
|
40 ## extract correct set of signal names values |
|
41 [idxvec, msg] = listidx (list ("in", "out", "st", "yd"), sigtype); |
|
42 if (msg) |
|
43 error ("invalid sigtype = %s", sigtype); |
|
44 endif |
|
45 |
|
46 syssiglist = sysgetsignals (sys, sigtype); |
|
47 [idxvec, msg] = listidx (syssiglist, signamelist); |
|
48 if (length (msg)) |
|
49 error ("sysidx (sigtype = %s): %s", sigtype, |
|
50 strrep (msg, "strlist", "signamelist")); |
|
51 endif |
|
52 |
|
53 endfunction |