lapack: add types and constants for Dgeev

This commit is contained in:
Vladimir Chalupecky
2016-09-14 17:45:15 +09:00
parent dfe8997264
commit b5f312203b

View File

@@ -156,3 +156,15 @@ const (
AllEigVecMulQ HowMany = 'B' // Compute all right and/or left eigenvectors multiplied by an input matrix.
SelectedEigVec HowMany = 'S' // Compute selected right and/or left eigenvectors.
)
// Job types for Dgeev.
type (
JobLeftEV byte
JobRightEV byte
)
// Job constants for Dgeev.
const (
ComputeLeftEV JobLeftEV = 'V'
ComputeRightEV JobRightEV = 'V'
)