public static enum Kernel.Method extends Enum<Kernel.Method>
Enum Constant and Description |
---|
GAUSSIAN_JORDAN_ELIMINATION
use Gauss-Jordan elimination; cheap but subject to numerical stability (rounding errors)
|
QR
use QR decomposition; moderately expensive (recommended)
|
Modifier and Type | Method and Description |
---|---|
static Kernel.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kernel.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kernel.Method QR
public static final Kernel.Method GAUSSIAN_JORDAN_ELIMINATION
public static Kernel.Method[] values()
for (Kernel.Method c : Kernel.Method.values()) System.out.println(c);
public static Kernel.Method 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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.