Class DecisionBoundary
- java.lang.Object
-
- weka.classifiers.functions.explicitboundaries.DecisionBoundary
-
- All Implemented Interfaces:
Serializable
,IDecisionBoundary
- Direct Known Subclasses:
DecisionBoundaryPlane
public abstract class DecisionBoundary extends Object implements Serializable, IDecisionBoundary
- Since:
- 2.1.0
- Version:
- 2.1.3
- Author:
- pawel trajdos
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DecisionBoundary(weka.core.Instances data, int class1Idx, int class2Idx)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getClass1Idx()
int
getClass2Idx()
weka.core.Instances
getDatasetHeader()
String
toString()
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface weka.classifiers.functions.explicitboundaries.IDecisionBoundary
classify, getDistance, getIndex, getValue
-
-
-
-
Method Detail
-
getDatasetHeader
public weka.core.Instances getDatasetHeader()
- Specified by:
getDatasetHeader
in interfaceIDecisionBoundary
- Returns:
- the datasetHeader
-
getClass1Idx
public int getClass1Idx()
- Specified by:
getClass1Idx
in interfaceIDecisionBoundary
- Returns:
- the class1Idx
-
getClass2Idx
public int getClass2Idx()
- Specified by:
getClass2Idx
in interfaceIDecisionBoundary
- Returns:
- the class2Idx
-
-