mjibson / 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 (
        "fmt"
        
        "github.com/mjibson/go-dsp/fft"
)

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

About

Digital Signal Processing for Go

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

License:ISC License


Languages

Language:Go 100.0%