mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 21:59:25 +08:00
12 lines
231 B
Go
12 lines
231 B
Go
package lapack
|
|
|
|
import (
|
|
"github.com/gonum/blas"
|
|
"github.com/gonum/blas/dbw"
|
|
)
|
|
|
|
type Float64 interface {
|
|
Dgeqrf(A dbw.General, tau []float64)
|
|
Dormqr(s blas.Side, t blas.Transpose, A dbw.General, tau []float64, B dbw.General)
|
|
}
|