Merge pull request #59 from gonum/adddlasr

Add dlasr
This commit is contained in:
Brendan Tracey
2015-10-14 20:05:33 -06:00
8 changed files with 478 additions and 8 deletions

View File

@@ -82,3 +82,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'
)