| Enum Constant and Description |
|---|
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).
|
NO_VECTORS
No singular vectors are computed.
|
OVERWRITE
The first min(m, n) singular vectors are overwritten on the matrix A.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
lapack()
Returns the byte value for LAPACK.
|
static SVDJob |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SVDJob[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVDJob ALL
public static final SVDJob COMPACT
public static final SVDJob OVERWRITE
public static final SVDJob NO_VECTORS
public static SVDJob[] values()
for (SVDJob c : SVDJob.values()) System.out.println(c);
public static SVDJob valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte lapack()