mirror of
https://github.com/gonum/gonum.git
synced 2025-10-19 05:24:52 +08:00
lapack: rename ComputeEV and add EVNone
This commit is contained in:

committed by
Vladimír Chalupecký

parent
0d92706921
commit
de667f08e7
@@ -38,9 +38,9 @@ func (e *EigenSym) Factorize(a Symmetric, vectors bool) (ok bool) {
|
||||
sd := NewSymDense(n, nil)
|
||||
sd.CopySym(a)
|
||||
|
||||
jobz := lapack.EVJob(lapack.None)
|
||||
jobz := lapack.EVNone
|
||||
if vectors {
|
||||
jobz = lapack.ComputeEV
|
||||
jobz = lapack.EVCompute
|
||||
}
|
||||
w := make([]float64, n)
|
||||
work := []float64{0}
|
||||
|
Reference in New Issue
Block a user