mirror of
https://github.com/gonum/gonum.git
synced 2025-10-17 20:51:06 +08:00
lapack,mat: rename SVDInPlace constant to SVDStore
This commit is contained in:

committed by
Vladimír Chalupecký

parent
ac10ac454b
commit
3a1f3daf9f
@@ -108,10 +108,10 @@ const (
|
||||
type SVDJob byte
|
||||
|
||||
const (
|
||||
SVDAll SVDJob = 'A' // Compute all singular vectors
|
||||
SVDInPlace SVDJob = 'S' // Compute the first singular vectors and store them in provided storage.
|
||||
SVDOverwrite SVDJob = 'O' // Compute the singular vectors and store them in input matrix
|
||||
SVDNone SVDJob = 'N' // Do not compute singular vectors
|
||||
SVDAll SVDJob = 'A' // Compute all columns of the matrix U or V.
|
||||
SVDStore SVDJob = 'S' // Compute the singular vectors and store them in the matrix U or V.
|
||||
SVDOverwrite SVDJob = 'O' // Compute the singular vectors and overwrite them on the input matrix A.
|
||||
SVDNone SVDJob = 'N' // Do not compute singular vectors.
|
||||
)
|
||||
|
||||
// GSVDJob specifies the singular vector computation type for Generalized SVD.
|
||||
|
Reference in New Issue
Block a user