Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davidavdav/SignalProcessing.jl

Signal Processing tools for Julia
https://github.com/davidavdav/SignalProcessing.jl

Last synced: about 2 months ago
JSON representation

Signal Processing tools for Julia

Awesome Lists containing this project

README

        

SignalProcessing
================

Note: The functionality of this package has been absorbed by [Julia DSP](https://github.com/JuliaDSP/DSP.jl). I'll keep this here for historic reasons.

This module contains some signalprocessing routines necessary for feature extraction for the most common features (MFCC, PLP) in speech processing.

Most of this is re-coded from octave 3.2.4.

Windowing (tapers)
- `hamming(n::Int)`
- `hamming(n::Int)`

Spectogram
- `specgram(x::Vector, n::Int=256; sr=8000, window=hamming(n), overlap=n/2)`
- computes spectogram for data in `x` over window of size `n` overlapping `overlap` points

Miscelaneous

- `levinson(acf::Vector, p::Int)`
- `toeplitz(c::Vector, r::Vector=c)`