mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 21:59:25 +08:00
lapack,native,cgo: rename JobEV to EVJob
This commit is contained in:
@@ -33,7 +33,7 @@ type Float64 interface {
|
||||
Dormlq(side blas.Side, trans blas.Transpose, m, n, k int, a []float64, lda int, tau, c []float64, ldc int, work []float64, lwork int)
|
||||
Dpocon(uplo blas.Uplo, n int, a []float64, lda int, anorm float64, work []float64, iwork []int) float64
|
||||
Dpotrf(ul blas.Uplo, n int, a []float64, lda int) (ok bool)
|
||||
Dsyev(jobz JobEV, uplo blas.Uplo, n int, a []float64, lda int, w, work []float64, lwork int) (ok bool)
|
||||
Dsyev(jobz EVJob, uplo blas.Uplo, n int, a []float64, lda int, w, work []float64, lwork int) (ok bool)
|
||||
Dtrcon(norm MatrixNorm, uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int, work []float64, iwork []int) float64
|
||||
Dtrtri(uplo blas.Uplo, diag blas.Diag, n int, a []float64, lda int) (ok bool)
|
||||
Dtrtrs(uplo blas.Uplo, trans blas.Transpose, diag blas.Diag, n, nrhs int, a []float64, lda int, b []float64, ldb int) (ok bool)
|
||||
@@ -122,11 +122,11 @@ const (
|
||||
EigBoth EigComp = 'I'
|
||||
)
|
||||
|
||||
// JobEV specifies whether eigenvectors will be computed in Dsyev.
|
||||
type JobEV byte
|
||||
// EVJob specifies whether eigenvectors will be computed in Dsyev.
|
||||
type EVJob byte
|
||||
|
||||
// ComputeEV specifies that eigenvectors will be computed in Dsyev.
|
||||
const ComputeEV JobEV = 'V'
|
||||
const ComputeEV EVJob = 'V'
|
||||
|
||||
// Jobs for Dgebal.
|
||||
const (
|
||||
|
Reference in New Issue
Block a user