Uses of Class
elki.outlier.lof.ALOCI.Node
-
Packages that use ALOCI.Node Package Description elki.outlier.lof LOF family of outlier detection algorithms. -
-
Uses of ALOCI.Node in elki.outlier.lof
Fields in elki.outlier.lof declared as ALOCI.Node Modifier and Type Field Description (package private) ALOCI.Node
ALOCI.Node. parent
Parent node(package private) ALOCI.Node
ALOCI.ALOCIQuadTree. root
Tree rootFields in elki.outlier.lof with type parameters of type ALOCI.Node Modifier and Type Field Description (package private) java.util.List<ALOCI.Node>
ALOCI.Node. children
Child nodes, may be nullMethods in elki.outlier.lof that return ALOCI.Node Modifier and Type Method Description ALOCI.Node
ALOCI.ALOCIQuadTree. findClosestNode(NumberVector vec, int tlevel)
Find the closest node (of depthtlevel
or above, if there is no node at this depth) for the given vector.Methods in elki.outlier.lof with parameters of type ALOCI.Node Modifier and Type Method Description private static double
ALOCI. calculate_MDEF_norm(ALOCI.Node sn, ALOCI.Node cg)
Method for the MDEF calculationMethod parameters in elki.outlier.lof with type arguments of type ALOCI.Node Modifier and Type Method Description private void
ALOCI.ALOCIQuadTree. bulkLoad(double[] lmin, double[] lmax, java.util.List<ALOCI.Node> children, ArrayModifiableDBIDs ids, int start, int end, int dim, int level, int code)
Bulk load the treeConstructor parameters in elki.outlier.lof with type arguments of type ALOCI.Node Constructor Description Node(int code, double[] center, int count, int level, java.util.List<ALOCI.Node> children)
Constructor.
-