-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Cris Silva Jr edited this page Jan 10, 2017
·
3 revisions
Welcome to the EDF wiki!
This repository aims to implement the EDF+ file standard for the Go programming language.
To install this package on your machine, run the following command:
go get github.com/ishiikurisu/edf
This snippet shows how to convert the EDF file to a CSV one, using tools already available on the package.
package main
import "github.com/ishiikurisu/edf"
import "fmt"
func main() {
edfFile := "your_file.edf"
edfContents := edf.ReadFile(edfFile)
fmt.Println(edfContents.WriteCSV())
}
This repository was written by Cristiano Silva Jr. while working on the Laboratory of Neuroscience and Behaviour from the University of Brasilia.