Skip to content
/ goft Public

Fourier transform support for Go language.

License

Notifications You must be signed in to change notification settings

yut-kt/goft

Repository files navigation

goft

v0.1.0 Test coverage Go Report Card
Go Reference license

Fourier Transformation support for Go language

Install

$ go get github.com/yut-kt/goft

Usage

import (
    "fmt"
    "math"
	
    "github.com/yut-kt/goft"
)

func ExampleDFT() {
    testSamples := []float64{0, 1, 0, -1}

    // DFT Any Numeric Slice
    f, err := goft.DFT(testSamples)
    if err != nil {
        panic(err)
    }
}

See goft_test.go for detailed Usage

License

goft is released under the MIT License.

About

Fourier transform support for Go language.

Resources

License

Stars

Watchers

Forks

Packages

No packages published