mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00
11 lines
171 B
Go
11 lines
171 B
Go
package latypes
|
|
|
|
import (
|
|
"github.com/dane-unltd/goblas"
|
|
"github.com/gonum/blas"
|
|
)
|
|
|
|
type Lapack interface {
|
|
Dgeqrf(order blas.Order, A goblas.General, tau []float64)
|
|
}
|