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

« back to all changes in this revision

Viewing changes to man/signal/hilb.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
 
hilb             Scilab Group             Scilab Function              hilb
2
 
NAME
3
 
   hilb - Hilbert transform
4
 
  
5
 
CALLING SEQUENCE
6
 
 [xh]=hilb(n[,wtype][,par])
7
 
PARAMETERS
8
 
 n          : odd integer : number of points in filter
9
 
            
10
 
 wtype      : string : window type ('re','tr','hn','hm','kr','ch')
11
 
            (default ='re')
12
 
            
13
 
 par        : window parameter for wtype='kr' or 'ch' default par=[0 0]
14
 
            see the function window for more help
15
 
            
16
 
 xh         : Hilbert transform
17
 
            
18
 
DESCRIPTION
19
 
   returns the first n points of the Hilbert transform centred around the
20
 
  origin.
21
 
  
22
 
   That is, xh=(2/(n*pi))*(sin(n*pi/2))^2.
23
 
  
24
 
EXAMPLE
25
 
 plot(hilb(51))
26
 
AUTHOR
27
 
   C. B.
28