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 |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301 USA. |
3430
|
19 |
|
20 ## -*- texinfo -*- |
5016
|
21 ## @deftypefn {Function File} {[@var{zer}, @var{pol}, @var{k}] =} tf2zp (@var{num}, @var{den}) |
|
22 ## Converts transfer functions to poles-and-zero representations. |
3430
|
23 ## |
5016
|
24 ## Returns the zeros and poles of the @acronym{SISO} system defined |
|
25 ## by @var{num}/@var{den}. |
|
26 ## @var{k} is a gain associated with the system zeros. |
3430
|
27 ## @end deftypefn |
|
28 |
|
29 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
30 |
|
31 function [zer, pol, k] = tf2zp (num, den) |
|
32 |
4462
|
33 if (nargin == 2) |
|
34 if (length (den) > 1) |
|
35 pol = roots (den); |
|
36 else |
|
37 pol = []; |
|
38 endif |
|
39 |
|
40 if (length (num) > 1) |
|
41 zer = roots (num); |
|
42 else |
|
43 zer = []; |
|
44 endif |
|
45 else |
5959
|
46 print_usage (); |
3430
|
47 endif |
|
48 |
5959
|
49 k = num(1) / den(1); |
3430
|
50 |
|
51 endfunction |