Uses of Class
bcds.tools.FreqTable

Packages that use FreqTable
bcds.phison This package defines essential graph entities, such as nodes, links and paths. 
bcds.phison.sim This package comprises the simulator and several processing modules. 
bcds.tools   
 

Uses of FreqTable in bcds.phison
 

Methods in bcds.phison that return FreqTable
static
<V,E> FreqTable<java.lang.Integer>
GraphUtil.nodalDegreeFreq(SimGraph<V,E> g)
          Returns the frequency distribution of the nodal degrees of the graph g.
 

Uses of FreqTable in bcds.phison.sim
 

Methods in bcds.phison.sim that return FreqTable
 FreqTable<java.lang.Integer> PmTracePathLength.PathBetweenPairs.getPathLengthFreq(V n1, V n2)
           
 

Uses of FreqTable in bcds.tools
 

Methods in bcds.tools that return FreqTable
static
<E> FreqTable<E>
FreqTable.make()
          Syntactic sugar.
 

Methods in bcds.tools with parameters of type FreqTable
static
<T extends java.lang.Number>
double
Utils.freqTableAverage(FreqTable<T> tab)
          Returns the average of a numeric variable organized in a frequency table.
static
<T> void
Utils.printFreqTable(java.io.PrintStream out, FreqTable<T> tab, java.util.Set<T> keys, java.lang.String msg, boolean acc)
          Prints to out a frequency table.