7017
|
1 ## Copyright (C) 1996, 2000, 2002, 2003, 2004, 2005, 2006, 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 |
|
20 ## -*- texinfo -*- |
3500
|
21 ## @deftypefn {Function File} {} is_siso (@var{sys}) |
5016
|
22 ## Returns nonzero if the system data structure |
3431
|
23 ## @var{sys} is single-input, single-output. |
|
24 ## @end deftypefn |
|
25 |
|
26 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
27 ## Created: July 1996, 1998 |
|
28 |
|
29 function SISO = is_siso (sys) |
|
30 |
4462
|
31 if (nargin != 1) |
6046
|
32 print_usage (); |
4462
|
33 elseif (! isstruct (sys)) |
4771
|
34 error ("input must be a system structure (see ss, tf, zp)"); |
3431
|
35 endif |
|
36 |
4462
|
37 [n, nz, m, p] = sysdimensions (sys); |
3431
|
38 |
4462
|
39 SISO = (m == 1 && p == 1); |
3431
|
40 |
|
41 endfunction |