/Gabor.jl

Small routine to calculate Gabor transform of a vector.

Primary LanguageJuliaOtherNOASSERTION

Gabor

Build Status

This package is superseded by WindowTrans.jl.

Small routine to calculate Gabor transform of a vector.

Example usage:

t = linspace(0,3,1000)
f = sin(5*ceil(t)*2π.*t)
freq,G = gabor(t, f, 0.1)

This produces

Simple Gabor transform example