public static enum NHERD.CovMode extends Enum<NHERD.CovMode>
Enum Constant and Description |
---|
DROP
Standard diagonal method, only the diagonal values get updated by
dropping the other terms.
|
EXACT
Creates the diagonal by solving the derivative with respect to the
specific objective function of NHERD
|
FULL
Use the full covariance matrix
|
PROJECT
Creates the diagonal by dropping the terms of the inverse of the
covariance matrix that is used to perform the update.
|
Modifier and Type | Method and Description |
---|---|
static NHERD.CovMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NHERD.CovMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NHERD.CovMode FULL
public static final NHERD.CovMode DROP
public static final NHERD.CovMode PROJECT
public static final NHERD.CovMode EXACT
public static NHERD.CovMode[] values()
for (NHERD.CovMode c : NHERD.CovMode.values()) System.out.println(c);
public static NHERD.CovMode 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 © 2017. All rights reserved.