lapack: add Job constants for Dgebal

This commit is contained in:
Vladimir Chalupecky
2016-08-26 12:30:21 +09:00
parent 994841ff81
commit 6bc846fd39

View File

@@ -120,3 +120,10 @@ const (
// input tridiagonal matrix. // input tridiagonal matrix.
EigBoth EigComp = 'I' EigBoth EigComp = 'I'
) )
// Jobs for Dgebal.
const (
Permute Job = 'P'
Scale Job = 'S'
PermuteScale Job = 'B'
)