public static enum LVQ.LVQVersion extends Enum<LVQ.LVQVersion>
Enum Constant and Description |
---|
LVQ1
LVQ1 will only update one LV
|
LVQ2
Two vectors will be updated if they are close enough together.
|
LVQ21
Two vectors will be updated if they are close enough together and do
not belong to the same class if one of them was the correct class to
a training vector.
|
LVQ3
Two vectors will be updated if they are close enough together and are
of the same class as the training vector.
|
Modifier and Type | Method and Description |
---|---|
static LVQ.LVQVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LVQ.LVQVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LVQ.LVQVersion LVQ1
public static final LVQ.LVQVersion LVQ2
public static final LVQ.LVQVersion LVQ21
public static final LVQ.LVQVersion LVQ3
public static LVQ.LVQVersion[] values()
for (LVQ.LVQVersion c : LVQ.LVQVersion.values()) System.out.println(c);
public static LVQ.LVQVersion 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.