Add dlasr

This commit is contained in:
btracey
2015-10-06 08:00:20 -06:00
parent 28f483e1da
commit 1ea1bb2a96
8 changed files with 478 additions and 8 deletions

View File

@@ -74,3 +74,12 @@ type MatrixType byte
const (
General MatrixType = 'G' // A dense matrix (like blas64.General).
)
// Pivot specifies the pivot type for plane rotations
type Pivot byte
const (
Variable Pivot = 'V'
Top Pivot = 'T'
Bottom Pivot = 'B'
)