Skip to content
This repository has been archived by the owner on Nov 24, 2018. It is now read-only.

Commit

Permalink
lapack: add Dgehrd to Float64 interface
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Jun 8, 2016
1 parent 06a5b86 commit 462181d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lapack.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ type Complex128 interface{}
// Float64 defines the public float64 LAPACK API supported by gonum/lapack.
type Float64 interface {
Dgecon(norm MatrixNorm, n int, a []float64, lda int, anorm float64, work []float64, iwork []int) float64
Dgehrd(n, ilo, ihi int, a []float64, lda int, tau, work []float64, lwork int)
Dgels(trans blas.Transpose, m, n, nrhs int, a []float64, lda int, b []float64, ldb int, work []float64, lwork int) bool
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)
Expand Down

0 comments on commit 462181d

Please sign in to comment.