Popularity
7.2
Stable
Activity
0.0
Stable
858
29
89
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.
-
gonum
Gonum is a set of numeric libraries for the Go programming language. It contains libraries for matrices, statistics, optimization, and more -
gosl
Linear algebra, eigenvalues, FFT, Bessel, elliptic, orthogonal polys, geometry, NURBS, numerical quadrature, 3D transfinite interpolation, random numbers, Mersenne twister, probability distributions, optimisation, differential equations. -
gonum/mat64
DISCONTINUED. The general purpose package for matrix computation. Package mat64 provides basic linear algebra operations for float64 matrices. -
TextRank
:wink: :cyclone: :strawberry: TextRank implementation in Golang with extendable features (summarization, phrase extraction) and multithreading (goroutine). -
sparse
Sparse matrix formats for linear algebra supporting scientific and machine learning applications -
triangolatte
2D triangulation library. Allows translating lines and polygons (both based on points) to the language of GPUs. -
PiHex
PiHex Library, written in Go, generates a hexadecimal number sequence in the number Pi in the range from 0 to 10,000,000. -
GoStats
GoStats is a go library for math statistics mostly used in ML domains, it covers most of the statistical measures functions. -
mudlark-go
DISCONTINUED. A collection of packages providing (hopefully) useful code for use in software using Google's Go programming language.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of go-dsp or a related project?
Popular Comparisons
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}))
}