Skip to content
/ numgo Public

Fundamental package for array computing in Golang

License

Notifications You must be signed in to change notification settings

nesazeri/numgo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

numgo

Fundamental package for array computing in Golang

NumGo is the fundamental package for scientific computing with Golang.

It provides:

a powerful N-dimensional array object

///////////////////////////////////////////////////////////////

go get github.com/nesazeri/numgo

go get -u github.com/nesazeri/numgo

package main

import (

"fmt"
"github.com/nesazeri/numgo"

)

func main(){

arrData := []float64{1, 2, 3, 4, 5}
arr := numgo.Array(arrData)
fmt.Println("Array: ", arr)

}

go run .\test.go

About

Fundamental package for array computing in Golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages