Package smile.math.blas
Enum Class SVDJob
- All Implemented Interfaces:
Serializable
,Comparable<SVDJob>
,Constable
The option if computing singular vectors.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll left (or right) singular vectors are returned in supplied matrix U (or Vt).The first min(m, n) singular vectors are returned in supplied matrix U (or Vt).No singular vectors are computed.The first min(m, n) singular vectors are overwritten on the matrix A. -
Method Summary
-
Enum Constant Details
-
ALL
All left (or right) singular vectors are returned in supplied matrix U (or Vt). -
COMPACT
The first min(m, n) singular vectors are returned in supplied matrix U (or Vt). -
OVERWRITE
The first min(m, n) singular vectors are overwritten on the matrix A. -
NO_VECTORS
No singular vectors are computed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
lapack
public byte lapack()Returns the byte value for LAPACK.- Returns:
- the byte value for LAPACK.
-