mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 13:55:20 +08:00
# 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:
10
lapack.go
10
lapack.go
@@ -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
|
||||
)
|
||||
|
Reference in New Issue
Block a user