Skip to content

maddyblue/go-dsp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

May 8, 2018
11479a3 · May 8, 2018
Jan 11, 2014
Sep 16, 2015
Jan 11, 2014
Mar 3, 2015
May 8, 2018
Oct 16, 2012
Dec 15, 2014
Mar 3, 2015

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages