public static enum MatrixIO.Format extends Enum<MatrixIO.Format>
DENSE_TEXT |
Each row is on its own line, with each column being delimited by one or more white space characters. All rows should have the same number of columns. |
MATLAB_SPARSE |
The sparse format supported by Matlab. See here for full details. |
SVDLIBC_SPARSE_TEXT |
The sparse human readable format supported by SVDLIBC. See here for full details. |
SVDLIBC_DENSE_TEXT |
The dense human readable format supported by SVDLIBC. See here for full details. |
SVDLIBC_SPARSE_BINARY |
The sparse binary format supported by SVDLIBC. See here for full details. |
SVDLIBC_DENSE_BINARY |
The dense binary format supported by SVDLIBC. See here for full details. |
Enum Constant and Description |
---|
CLUTO_DENSE
The sparse text format supported by
CLUTO.
|
CLUTO_SPARSE
The sparse text format supported by
CLUTO.
|
DENSE_TEXT
A human readable format where each row has its own line and all
column values are provided.
|
MATLAB_SPARSE
The sparse format supported by Matlab.
|
SVDLIBC_DENSE_BINARY
The dense binary format supported by SVDLIBC.
|
SVDLIBC_DENSE_TEXT
The dense human readable format supported by SVDLIBC.
|
SVDLIBC_SPARSE_BINARY
The sparse binary format supported by SVDLIBC.
|
SVDLIBC_SPARSE_TEXT
The sparse human readable format supported by SVDLIBC.
|
Modifier and Type | Method and Description |
---|---|
static MatrixIO.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatrixIO.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatrixIO.Format DENSE_TEXT
public static final MatrixIO.Format MATLAB_SPARSE
public static final MatrixIO.Format SVDLIBC_SPARSE_TEXT
public static final MatrixIO.Format SVDLIBC_DENSE_TEXT
public static final MatrixIO.Format SVDLIBC_SPARSE_BINARY
public static final MatrixIO.Format SVDLIBC_DENSE_BINARY
public static final MatrixIO.Format CLUTO_DENSE
public static final MatrixIO.Format CLUTO_SPARSE
public static MatrixIO.Format[] values()
for (MatrixIO.Format c : MatrixIO.Format.values()) System.out.println(c);
public static MatrixIO.Format valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2012. All Rights Reserved.