Add QR factorization to lapack64 interface.

This commit is contained in:
btracey
2015-08-03 10:21:37 -06:00
parent a5bda2fc24
commit 0331cab04a
6 changed files with 105 additions and 2 deletions

View File

@@ -23,6 +23,7 @@ type Complex128 interface{}
// Float64 defines the public float64 LAPACK API supported by gonum/lapack.
type Float64 interface {
Dgeqrf(m, n int, a []float64, lda int, tau, work []float64, lwork int)
Dpotrf(ul blas.Uplo, n int, a []float64, lda int) (ok bool)
}