qr working with lapacke binding

This commit is contained in:
David Neumann
2014-02-03 01:25:48 +01:00
parent da2378864e
commit 8663ca8eaa
11 changed files with 17129 additions and 32 deletions

View File

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