Package elki.clustering.correlation
Class ORCLUS.ORCLUSCluster
- java.lang.Object
-
- elki.clustering.correlation.ORCLUS.ORCLUSCluster
-
- Enclosing class:
- ORCLUS
private static final class ORCLUS.ORCLUSCluster extends java.lang.ObjectEncapsulates the attributes of a cluster.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) double[][]basisThe matrix defining the subspace of this cluster.(package private) double[]centroidThe centroid of this cluster.(package private) elki.database.ids.ModifiableDBIDsobjectIDsThe ids of the objects belonging to this cluster.
-
Constructor Summary
Constructors Constructor Description ORCLUSCluster()Creates a new empty cluster.ORCLUSCluster(double[] o, elki.database.ids.DBIDRef id)Creates a new cluster containing the specified object o.
-
-
-
Field Detail
-
objectIDs
elki.database.ids.ModifiableDBIDs objectIDs
The ids of the objects belonging to this cluster.
-
basis
double[][] basis
The matrix defining the subspace of this cluster. Note: we store the vectors in rows here, think of an array of Eigenvectors.
-
centroid
double[] centroid
The centroid of this cluster.
-
-