lapack,native,cgo: use lapack.EVComp instead of lapack.Comp in Dhseqr

This commit is contained in:
Vladimir Chalupecky
2016-10-08 23:15:30 +09:00
parent e2a7d959d7
commit c02fe3f6ff
4 changed files with 10 additions and 9 deletions

View File

@@ -146,8 +146,8 @@ const (
EigenvaluesOnly EVJob = 'E'
EigenvaluesAndSchur EVJob = 'S'
InitZ Comp = 'I'
UpdateZ Comp = 'V'
InitZ EVComp = 'I'
UpdateZ EVComp = 'V'
)
// UpdateQ specifies that the matrix Q will be updated.