https://github.com/ledyba/go-fft
FFT implementation in golang
https://github.com/ledyba/go-fft
fft go golang
Last synced: 4 months ago
JSON representation
FFT implementation in golang
- Host: GitHub
- URL: https://github.com/ledyba/go-fft
- Owner: ledyba
- License: gpl-3.0
- Created: 2015-02-13T15:16:54.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T14:31:55.000Z (over 4 years ago)
- Last Synced: 2024-06-20T05:27:01.450Z (about 2 years ago)
- Topics: fft, go, golang
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 12
- Watchers: 4
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FFT implementation in Golang
Readable FFT implementation, but may not run fast...
## How to use
```golang
import "github.com/ledyba/go-fft/fft"
data := make([]complex128, 32)
for i := range data {
// Fill data
data[i] = complex(float64(i*2)/float64(32),0)
}
fft.Fft(data)
```