initial commit

This commit is contained in:
David Neumann
2014-01-27 08:55:37 +01:00
commit 6b31ce2cf5
2 changed files with 11 additions and 0 deletions

4
golapack.go Normal file
View File

@@ -0,0 +1,4 @@
package golapack
func Dgeqrf() {
}

7
lapack/lapack.go Normal file
View File

@@ -0,0 +1,7 @@
package latypes
import "gihub.com/dane-unltd/goblas"
type Lapack interface {
Dgeqrf(order blas.Order, A goblas.General, tau []float64)
}