]> Creatis software - CreaPhase.git/blob - octave_packages/signal-1.1.3/tf2zp.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / signal-1.1.3 / tf2zp.m
1 ## Copyright (C) 1996, 1998, 2000, 2003, 2004, 2005, 2006, 2007 Auburn University
2 ## Copyright (C) 2012 Lukas F. Reichlin <lukas.reichlin@gmail.com>
3 ##
4 ## This program is free software; you can redistribute it and/or modify it under
5 ## the terms of the GNU General Public License as published by the Free Software
6 ## Foundation; either version 3 of the License, or (at your option) any later
7 ## version.
8 ##
9 ## This program is distributed in the hope that it will be useful, but WITHOUT
10 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12 ## details.
13 ##
14 ## You should have received a copy of the GNU General Public License along with
15 ## this program; if not, see <http://www.gnu.org/licenses/>.
16
17 ## -*- texinfo -*-
18 ## @deftypefn {Function File} {[@var{zer}, @var{pol}, @var{k}] =} tf2zp (@var{num}, @var{den})
19 ## Converts transfer functions to poles-and-zero representations.
20 ##
21 ## Returns the zeros and poles of the system defined 
22 ## by @var{num}/@var{den}.
23 ## @var{k} is a gain associated with the system zeros.
24 ## @end deftypefn
25
26 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu>
27
28 function [z, p, k] = tf2zp (varargin)
29
30   if (nargin == 0)
31     print_usage ();
32   endif
33
34   [z, p, k] = zpkdata (tf (varargin{:}), "vector");
35
36 endfunction