lapack: rename EigComp to EVComp

This follows the naming style of EVJob and EVSide.
This commit is contained in:
Vladimir Chalupecky
2016-10-08 22:58:37 +09:00
parent f3d79efebc
commit a219b045f0
6 changed files with 11 additions and 11 deletions

View File

@@ -108,16 +108,16 @@ const (
SVDNone SVDJob = 'N' // Do not compute singular vectors
)
// EigComp specifies the type of eigenvalue decomposition.
type EigComp byte
// EVComp specifies how eigenvectors are computed.
type EVComp byte
const (
// EigDecomp specifies to compute the eigenvalues and eigenvectors of the
// full symmetric matrix.
EigDecomp EigComp = 'V'
EigDecomp EVComp = 'V'
// EigBoth specifies to compute both the eigenvalues and eigenvectors of the
// input tridiagonal matrix.
EigBoth EigComp = 'I'
EigBoth EVComp = 'I'
)
// Job types for computation of eigenvectors.