window

From STX Wiki
Jump to navigationJump to search

Compute a window function used for signal windowing in signal processing algorithms.

Usage
window(type, x {, scale {, par}})
type
selects the type of the window function (described below); must be number
x
  • If x is a scalar, the argument is used as window length and the result of window is a vector containing the window function.
  • If x is a vector or matrix, the number of rows of x is used as window length and the result of window is a matrix with the same dimensions as x where each column contains the windowed values of the input column.
The window length must be greater than 2!
scale
A boolean argument to enable/disable energy correction. If the energy correction is enabled (scale!=0), the window function is scaled by a factor that approximately equalises the energy loss caused by the windowing. To preserve signal energy, scale should be set to 1, otherwise (to preserve signal amplitude) it should be 0.
par
A window parameter depending on the type of the window function (described below). If par is set to 0 (default), a default parameter value is automatically selected.
Description
The following table shows the implemented window functions and the meaning of the parameter par. For the most types an alias function is implement, which is also shown in the table. In the column description w[i] is the i-th value of the window function (i = 0..n-1) and n is the window length.
type name par alias function description
0 rectangle not used
w[i] = 1
1 hanning not used whanning(x{,scale})
w[i] = 0.5 - 0.5 * cos( a*i )
with: a = 2 * pi / (n-1)
2 hamming not used whamming(x{,scale})
w[i] = 0.54 - 0.46 * cos( a*i )
with: a = 2 * pi / (n-1)
3 blackman 0<par≤0.25
default=0.16
wblackman(x{,scale{,par}})
w[i] = (1-par)/2 - 0.5 * cos( a*i ) + par/2 * cos( 2*a*i )
with: a = 2 * pi / (n-1)
4 kaiser 0<par
default=8
wkaiser(x{,scale{,par}})
w[i] = I0( par / m * sqrt(m^2 - (i-m)^2) ) / I0( par )
with: m = (n-1) / 2
      I0(z) is the modfied zero-order bessel function
5 bartlett
(triangle)
not used wbartlett(x{,scale})
0 ≤ i ≤ m:  w[i] = i / m
m <  i <  n: w[i] = 2 - i / m
with: m = (n-1) / 2
6 tappered rectangle not used wtaprect(x{,scale}) A rectangle with to short hanning slopes.
7 nuttall not used wnuttall(x{,scale}) A 4-term blackman-harris window with high dynamic range, low frequency resolution and minimized maximum sidelobes.
Nuttall, Albert H. "Some Windows with Very Good Sidelobe Behavior." IEEE Transactions on Acoustics, Speech, and Signal Processing. Vol. ASSP-29 (February 1981). pp. 84-91
8 flat-top not used wflattop(x{,scale}) A 5-term blackman-harris window with high dynamic range, low frequency resolution and minimized passband ripple (< 0.01dB). Flat-top windows are primarily used for calibration purposes.
9 gauss 0<par≤ 20
default=3
wgauss(x{,scale{,par}})
w[i] = exp( -0.5 * (par * (m - i) / m) ^ 2 )
with: m = (n-1) / 2
Notes:
  • If the argument type has an invalid value, the rectangle window is used.
  • If the energy-correction is enabled (argument scale!=0), the values w[i] scaled by a factor that approximately equalises the energy loss caused by the window function. The scaling factor is computed using white noise as test signal.
  • If the argument par is supplied to a function not using this argument, it is ignored.
Result
The result r depends on the argument x:
  • x is a number: The value is used as window length n. The result r is vector with length n containing the window function.
  • x is a vector or matrix: The number of rows of x is used as window length. Each column of x is multiplied with the window function (element-wise) and stored in a column of r. The result r has the same type as x.
See also
fft, wconvert, hth

<function list>

Navigation menu

Personal tools