Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

Uses of Class
de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash.CASHInterval

Packages that use CASHInterval
de.lmu.ifi.dbs.elki.algorithm.clustering.correlation Package to collect correlation clustering algorithms suitable as a task for the KDDTask main routine. 
de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash Helper classes for the CASH algorithm. 
de.lmu.ifi.dbs.elki.algorithm.result.clustering Package to collect result classes for the results of clustering algorithms. 
 

Uses of CASHInterval in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation
 

Methods in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation that return CASHInterval
private  CASHInterval CASH.determineNextIntervalAtMaxLevel(DefaultHeap<Integer,CASHInterval> heap)
          Determines the next ''best'' interval at maximum level, i.e. the next interval containing the most unprocessed obejcts.
private  CASHInterval CASH.doDetermineNextIntervalAtMaxLevel(DefaultHeap<Integer,CASHInterval> heap)
          Recursive helper method to determine the next ''best'' interval at maximum level, i.e. the next interval containing the most unprocessed obejcts
 

Methods in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation with parameters of type CASHInterval
private  Database<RealVector> CASH.buildDerivatorDB(Database<ParameterizationFunction> database, CASHInterval interval)
          Builds a database for the derivator consisting of the ids in the specified interval.
private  Matrix CASH.runDerivator(Database<ParameterizationFunction> database, int dim, CASHInterval interval, Set<Integer> ids)
          Runs the derivator on the specified inerval and assigns all points having a distance less then the standard deviation of the derivator model to the model to this model.
 

Method parameters in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation with type arguments of type CASHInterval
private  CASHInterval CASH.determineNextIntervalAtMaxLevel(DefaultHeap<Integer,CASHInterval> heap)
          Determines the next ''best'' interval at maximum level, i.e. the next interval containing the most unprocessed obejcts.
private  CASHInterval CASH.doDetermineNextIntervalAtMaxLevel(DefaultHeap<Integer,CASHInterval> heap)
          Recursive helper method to determine the next ''best'' interval at maximum level, i.e. the next interval containing the most unprocessed obejcts
private  void CASH.initHeap(DefaultHeap<Integer,CASHInterval> heap, Database<ParameterizationFunction> database, int dim, Set<Integer> ids)
          Initializes the heap with the root intervals.
 

Uses of CASHInterval in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash
 

Fields in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash declared as CASHInterval
private  CASHInterval CASHInterval.leftChild
          Holds the left child.
private  CASHInterval CASHInterval.rightChild
          Holds the right child.
 

Methods in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash that return CASHInterval
 CASHInterval CASHInterval.getLeftChild()
          Returns the left child of this interval.
 CASHInterval CASHInterval.getRightChild()
          Returns the right child of this interval.
 

Method parameters in de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash with type arguments of type CASHInterval
 int CASHInterval.compareTo(Identifiable<CASHInterval> o)
          Compares this object with the specified object for order.
 

Uses of CASHInterval in de.lmu.ifi.dbs.elki.algorithm.result.clustering
 

Fields in de.lmu.ifi.dbs.elki.algorithm.result.clustering declared as CASHInterval
private  CASHInterval HierarchicalCASHCluster.interval
          The interval of this cluster.
 

Methods in de.lmu.ifi.dbs.elki.algorithm.result.clustering that return CASHInterval
 CASHInterval HierarchicalCASHCluster.getInterval()
          Returns the interval of this cluster.
 

Constructors in de.lmu.ifi.dbs.elki.algorithm.result.clustering with parameters of type CASHInterval
HierarchicalCASHCluster(CASHInterval interval, int corrDim, Set<Integer> ids, List<HierarchicalCASHCluster> children, List<HierarchicalCASHCluster> parents, String label, int level, int levelIndex)
          Provides a hierarchical correlation cluster in an arbitrary subspace that holds the basis vectors of this cluster, the similarity matrix for distance computations, the ids of the objects belonging to this cluster and the children and parents of this cluster.
HierarchicalCASHCluster(CASHInterval interval, int corrDim, Set<Integer> ids, String label, int level, int levelIndex)
          Provides a new hierarchical correlation cluster with the specified parameters.
 


Release 0.1 (2008-07-10_1838)