mirror of
https://github.com/gonum/gonum.git
synced 2025-10-23 15:13:31 +08:00
qr working with lapacke binding
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user