Skip to content

ka10uta/goft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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