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

« back to all changes in this revision

Viewing changes to man/signal/ffilt.cat

  • 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
 
ffilt            Scilab Group            Scilab Function              ffilt
2
 
NAME
3
 
   ffilt - coefficients of FIR low-pass
4
 
  
5
 
CALLING SEQUENCE
6
 
 [x]=ffilt(ft,n,fl,fh)
7
 
PARAMETERS
8
 
 ft         : filter type where ft can take the values
9
 
            
10
 
           "lp"  : for low-pass filter
11
 
                 
12
 
           "hp"  : for high-pass filter
13
 
                 
14
 
           "bp"  : for band-pass filter
15
 
                 
16
 
           "sb"  : for stop-band filter
17
 
                 
18
 
 n          : integer (number of filter samples desired)
19
 
            
20
 
 fl         : real (low frequency cut-off)
21
 
            
22
 
 fh         : real (high frequency cut-off)
23
 
            
24
 
 x          : vector of filter coefficients
25
 
            
26
 
DESCRIPTION
27
 
   Get n coefficients of a FIR low-pass, high-pass, band-pass, or stop-band
28
 
  filter. For low and high-pass filters one cut-off frequency must be
29
 
  specified whose value is given in fl. For band-pass and stop-band filters
30
 
  two cut-off frequencies must be specified for which the lower value is in
31
 
  fl and the higher value is in fh
32
 
  
33
 
AUTHOR
34
 
   C. B.
35