Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 865 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 865 Bytes

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}))
}