added dqr

This commit is contained in:
David Neumann
2014-01-29 21:25:01 +01:00
parent 20313fb406
commit da2378864e
5 changed files with 38 additions and 14 deletions

10
lapack.go Normal file
View File

@@ -0,0 +1,10 @@
package lapack
import (
"github.com/gonum/blas"
)
type Lapack interface {
Dgeqrf(A blas.General, tau []float64)
Dormqr(s blas.Side, t blas.Transpose, A blas.General, tau []float64, B blas.General)
}