~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/signal/eqfir.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH eqfir 1 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
eqfir - minimax approximation of FIR filter
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
[hn]=eqfir(nf,bedge,des,wate)
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 10
11
 
nf
12
 
: number of output filter points desired
13
 
.TP
14
 
bedge
15
 
: Mx2 matrix giving a pair of edges for each band
16
 
.TP
17
 
des
18
 
: M-vector giving desired magnitude for each band
19
 
.TP
20
 
wate
21
 
: M-vector giving relative weight of error in each band
22
 
.TP
23
 
hn
24
 
: output of linear-phase FIR filter coefficients
25
 
.SH DESCRIPTION
26
 
Minimax approximation of multi-band, linear phase, FIR filter
27
 
.SH EXAMPLE
28
 
.nf
29
 
hn=eqfir(33,[0 .2;.25 .35;.4 .5],[0 1 0],[1 1 1]);
30
 
[hm,fr]=frmag(hn,256);
31
 
plot(fr,hm),
32
 
.fi
33
 
.SH AUTHOR
34
 
C. B.