Popularity
7.2
Stable
Activity
0.0
Stable
841
29
88

Programming language: Go
License: ISC License

go-dsp alternatives and similar packages

Based on the "Science and Data Analysis" category.
Alternatively, view go-dsp alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of go-dsp or a related project?

Add another 'Science and Data Analysis' Package

README

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