added svd

This commit is contained in:
David Neumann
2014-04-22 23:45:16 +02:00
parent 5bc746874e
commit 2089c0d4fa
2 changed files with 25 additions and 1 deletions

View File

@@ -3,9 +3,14 @@ package lapack
import (
"github.com/gonum/blas"
"github.com/gonum/blas/dbw"
"github.com/gonum/blas/zbw"
)
type Float64 interface {
Dgeqrf(A dbw.General, tau []float64)
Dormqr(s blas.Side, t blas.Transpose, A dbw.General, tau []float64, B dbw.General)
}
type Complex128 interface {
Zgesvd(jobu byte, jobvt byte, A zbw.General, s []float64, U zbw.General, Vt zbw.General, superb []float64)
}