3430
|
1 ## Copyright (C) 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 |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301 USA. |
3430
|
19 |
|
20 ## -*- texinfo -*- |
3500
|
21 ## @deftypefn {Function File} {} sysgettype (@var{sys}) |
3430
|
22 ## return the initial system type of the system |
|
23 ## |
5016
|
24 ## @strong{Input} |
|
25 ## @table @var |
|
26 ## @item sys |
|
27 ## System data structure. |
|
28 ## @end table |
3430
|
29 ## |
5016
|
30 ## @strong{Output} |
|
31 ## @table @var |
|
32 ## @item systype |
|
33 ## String indicating how the structure was initially |
|
34 ## constructed. Values: @code{"ss"}, @code{"zp"}, or @code{"tf"}. |
|
35 ## @end table |
3430
|
36 ## |
5016
|
37 ## @acronym{FIR} initialized systems return @code{systype="tf"}. |
3430
|
38 ## @end deftypefn |
|
39 |
|
40 function systype = sysgettype (sys) |
|
41 |
4462
|
42 if (! isstruct (sys)) |
|
43 error ("sysgettype: input sys is not a structure"); |
3430
|
44 endif |
|
45 |
4771
|
46 typestr = {"tf", "zp", "ss"}; |
|
47 systype = typestr{ sys.sys(1) + 1}; |
4462
|
48 |
3430
|
49 endfunction |