Uses of Class
cs195z.support.CElement

Packages that use CElement
cs195z.cluster   
cs195z.support   
 

Uses of CElement in cs195z.cluster
 

Methods in cs195z.cluster that return types with arguments of type CElement
 Iterable<Iterable<CElement<T,E>>> CStudentCAST.getResult()
          The standard issue method is probably ok, assuming you assign an Iterable>> to _result.
 Iterable<Iterable<CElement<T,E>>> CStudentKMeans.getResult()
          The standard issue method is probably ok, assuming you assign an Iterable>> to _result.
 

Constructor parameters in cs195z.cluster with type arguments of type CElement
CStudentCAST(List<CElement<T,E>> items, double theta, WeightedGraph<CElement<T,E>,DefaultWeightedEdge> g)
          Please do not modify this constructor.
CStudentCAST(List<CElement<T,E>> items, double theta, WeightedGraph<CElement<T,E>,DefaultWeightedEdge> g)
          Please do not modify this constructor.
CStudentKMeans(List<CElement<T,E>> items, int k)
          Please do not modify this constructor.
 

Uses of CElement in cs195z.support
 

Methods in cs195z.support that return types with arguments of type CElement
 List<CElement<T,E>> CDataParser.getResult()
           
 List<CElement<Double,String>> CDataParser.CStandardDataParser.getResult()
           
 Iterable<Iterable<CElement<T,E>>> CAlgorithm.getResult()
          Returns an iterable set of clusters, each of which is an iterable collection of elements.
 

Methods in cs195z.support with parameters of type CElement
static
<T extends Number,E extends Serializable>
double
CUtils.distance(CElement<T,E> c1, CElement<T,E> c2)
          Gives the Euclidean distance between two CElements
static
<T extends Number,E extends Serializable>
double
CUtils.distance(CElement<T,E> c1, CElement<T,E> c2)
          Gives the Euclidean distance between two CElements
 

Method parameters in cs195z.support with type arguments of type CElement
static
<T extends Number,E extends Serializable>
void
CUtils.printClusters(Iterable<Iterable<CElement<T,E>>> clusters)
          Prints clusters at the end of execution of algorithm.