public static enum LinearAlgebra.DecompositorFactory extends Enum<LinearAlgebra.DecompositorFactory>
Enum Constant and Description |
---|
CHOLESKY |
EIGEN |
LU |
QR |
RAW_LU |
RAW_QR |
SVD |
Modifier and Type | Method and Description |
---|---|
abstract MatrixDecompositor |
create(Matrix matrix) |
static LinearAlgebra.DecompositorFactory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinearAlgebra.DecompositorFactory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinearAlgebra.DecompositorFactory CHOLESKY
public static final LinearAlgebra.DecompositorFactory EIGEN
public static final LinearAlgebra.DecompositorFactory RAW_LU
public static final LinearAlgebra.DecompositorFactory LU
public static final LinearAlgebra.DecompositorFactory RAW_QR
public static final LinearAlgebra.DecompositorFactory QR
public static final LinearAlgebra.DecompositorFactory SVD
public static LinearAlgebra.DecompositorFactory[] values()
for (LinearAlgebra.DecompositorFactory c : LinearAlgebra.DecompositorFactory.values()) System.out.println(c);
public static LinearAlgebra.DecompositorFactory 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 nullpublic abstract MatrixDecompositor create(Matrix matrix)
Copyright © 2015. All rights reserved.