3430
|
1 ## Copyright (C) 1996 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 |
|
17 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. |
|
18 |
|
19 ## -*- texinfo -*- |
|
20 ## @deftypefn {Function File} {[@var{c}, @var{tsam}, @var{input}, @var{output}] =} sys2fir (@var{sys}) |
|
21 ## |
5016
|
22 ## Extract @acronym{FIR} data from system data structure; see @command{fir2sys} for |
3430
|
23 ## parameter descriptions. |
|
24 ## @end deftypefn |
5053
|
25 ## |
3430
|
26 ## @seealso{fir2sys} |
|
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 |