stevemurr / go-dsp

Digital Signal Processing for Go

Home Page:http://godoc.org/github.com/mjibson/go-dsp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GO-DSP

go-dsp is a digital signal processing package for the Go programming language.

Packages

  • dsputils - utilities and data structures for DSP
  • fft - fast Fourier transform
  • spectral - power spectral density functions (e.g., Pwelch)
  • wav - wav file reader functions
  • window - window functions (e.g., Hamming, Hann, Bartlett)

Installation and Usage

$ go get "github.com/mjibson/go-dsp/fft"

package main

import "github.com/mjibson/go-dsp/fft"
import "fmt"

func main() {
        fmt.Println(fft.FFTReal([]float64 {1, 2, 3}))
}

About

Digital Signal Processing for Go

http://godoc.org/github.com/mjibson/go-dsp


Languages

Language:Go 100.0%