public static enum AdjustedMutualInformation.Method extends java.lang.Enum<AdjustedMutualInformation.Method>
Enum Constant and Description |
---|
MAX
I(y1, y2) / max(H(y1), H(y2))
|
MIN
I(y1, y2) / min(H(y1), H(y2))
|
SQRT
I(y1, y2) / sqrt(H(y1) * H(y2))
|
SUM
2 * I(y1, y2) / (H(y1) + H(y2))
|
Modifier and Type | Method and Description |
---|---|
static AdjustedMutualInformation.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdjustedMutualInformation.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdjustedMutualInformation.Method MAX
public static final AdjustedMutualInformation.Method MIN
public static final AdjustedMutualInformation.Method SUM
public static final AdjustedMutualInformation.Method SQRT
public static AdjustedMutualInformation.Method[] values()
for (AdjustedMutualInformation.Method c : AdjustedMutualInformation.Method.values()) System.out.println(c);
public static AdjustedMutualInformation.Method 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 null