7017
|
1 ## Copyright (C) 1996, 2000, 2003, 2004, 2005, 2006, 2007 |
|
2 ## Auburn University. All rights reserved. |
3430
|
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. |
3430
|
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. |
3430
|
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/>. |
3430
|
19 |
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {[@var{c}, @var{tsam}, @var{input}, @var{output}] =} sys2fir (@var{sys}) |
|
22 ## |
5016
|
23 ## Extract @acronym{FIR} data from system data structure; see @command{fir2sys} for |
3430
|
24 ## parameter descriptions. |
5642
|
25 ## @seealso{fir2sys} |
3430
|
26 ## @end deftypefn |
|
27 |
|
28 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
29 ## Created: July 1996 |
|
30 |
|
31 function [c, tsam, inname, outname] = sys2fir (sys) |
|
32 |
|
33 ## let sys2tf do most of the work |
|
34 |
4462
|
35 [num, den, tsam, inname, outname] = sys2tf (sys); |
3430
|
36 |
|
37 alph = den(1); # scale to get monic denominator |
4462
|
38 den /= alph; |
|
39 num /= alph; |
|
40 l = length (den); |
|
41 m = length (num); |
|
42 if (norm (den(2:l))) |
|
43 sysout (sys, "tf"); |
|
44 error ("denominator has poles away from origin"); |
|
45 elseif (! is_digital (sys)) |
|
46 error ("system must be discrete-time to be FIR"); |
|
47 elseif (m != l) |
|
48 warning ("sys2fir: deg(num) - deg(den) = %d; coefficients must be shifted", |
|
49 m-l); |
3430
|
50 endif |
|
51 c = num; |
4462
|
52 |
3430
|
53 endfunction |
|
54 |