# This is a combination of 3 commits.

# The first commit's message is:
fix merge

# The 2nd commit message will be skipped:

#	Add Dgesvd and test

# The 3rd commit message will be skipped:

#	implemented work thing
This commit is contained in:
btracey
2016-01-06 21:30:28 -07:00
parent 4ecfd0048d
commit f8c9938d62
4 changed files with 382 additions and 0 deletions

View File

@@ -98,3 +98,13 @@ const (
ApplyP DecompUpdate = 'P'
ApplyQ DecompUpdate = 'Q'
)
// SVDJob specifies the singular vector computation type for SVD.
type SVDJob byte
const (
SVDAll SVDJob = 'A' // Compute all singular vectors
SVDInPlace = 'S' // Compute the first singular vectors and store in provided storage.
SVDOverwrite = 'O' // Compute the singular vectors and store in input matrix
SVDNone = 'N' // Do not compute singular vectors
)