Giter VIP home page Giter VIP logo

window-function's Introduction

window-function

Build Status npm version Dependency Status

Window functions for digital signal processing

Introduction

Among other uses, window functions help control spectral leakage when doing Fourier Analysis. This collection of window functions is copied directly from Wikipedia. Caveat emptor.

Usage

Apply window to a signal:

var blackmanHarris = require('window-function/blackman-harris')
var applyWindow = require('window-function/apply')

var signal = [-1, 0, 1, 0, -1, 0]

var windowedSignal = applyWindow(signal, blackmanHarris)

Apply the window functions yourself:

var wfuncs = require('window-function')

var value = wfuncs.blackmanHarris( 50, 101 )

API

require('window-funciton/<type>')(i, total)

To calculate the value of a window function, pass the sample number i and total number of samples to one of the window functions listed below, along with any additional parameters it may require. The plots below are calculated from the npm module and plotted with Fourier transform to illustrate the spectral leakage. See the Wikipedia page on window functions for more details.

bartlettHann( i, N ):

Bartlett-Hann Window Equation 1

Bartlett-Hann Window Equation 2

Bartlett-Hann

bartlett( i, N ):

Bartlett

blackman( i, N ):

Blackman Window Equation 1

Blackman Window Equation 2

Blackman

blackmanHarris( i, N ):

Blackman-Harris Window Equation 1

Blackman-Harris Window Equation 2

Blackman-Harris

blackmanNuttall( i, N ):

Blackman-Nuttall Window Equation 1

Blackman-Nuttall Window Equation 2

Blackman-nuttall

cosine( i, N ):

Cosine Window Equation 1

Cosine

exactBlackman( i, N ):

Exact Blackman

The same as the Blackman window, except a0 = 0.42659 a1 = 0.49656, and a2 = 0.076849. These place zeros at the third and fourth sidelobes.

flatTop( i, N ):

Flat top Window Equation 1

Flat top Window Equation 2

Flat Top

gaussian( i, N, sigma ):

Sigma controls the width of the window.

Gaussian Window Equation 1

Gaussian Window Equation 2

Gaussian

hamming( i, N ):

Hamming Window Equation 1

Hamming Window Equation 2

Hamming

hann( i, N ):

Hann Window Equation

Hann

lanczos( i, N ):

Lanczos Window Equation

Lanczos

nuttall( i, N ):

Nuttall Window Equation 1

Nuttall Window Equation 2

Nuttall

rectangular( i, N ):

Rectangular Window Equation

Rectangular

triangular( i, N ):

Triangular Window Equation

Triangular

tukey( i, N, alpha ):

A tapered cosine window. Alpha controls the relative width of the flat section. Alpha=0 is rectangular, alpha=1 is Hann. Tukey Window Equation

Tukey

welch( i, N ):

Welch Window Equation

Welch

require('window-function/apply')(array, fn)

Apply a windowing function to an array, modifies an array in-place.

require('window-function/generate')(fn, n)

Generate an array of n samples of the window function fn.

Testing

The tests ensure the window functions aren't returning NaN, but it's hard to have confidence in the accuracy with tests. Instead, I opted to focus on visual testing via plots and Fourier Transforms. To generate the plots, run

$ npm run generate-plots

It pipes them through matplotlib. Don't worry. I realize the irony.

Credits

Window function definitions and equation images from Wikipedia: Window Function.

(c) 2015 Ricky Reusser. MIT License

window-function's People

Contributors

bvanderdrift avatar dy avatar rreusser avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.