Add LQ factorization to cgo and tests

Responded to PR comments
This commit is contained in:
btracey
2015-08-03 22:50:13 -06:00
parent eb6aeed431
commit 80e9717bf5
8 changed files with 109 additions and 23 deletions

View File

@@ -23,6 +23,7 @@ type Complex128 interface{}
// Float64 defines the public float64 LAPACK API supported by gonum/lapack.
type Float64 interface {
Dgelqf(m, n int, a []float64, lda int, tau, work []float64, lwork int)
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)
}