Uses of Interface
uchicago.src.sim.network.AdjacencyMatrix

Packages that use AdjacencyMatrix
uchicago.src.sim.network   
 

Uses of AdjacencyMatrix in uchicago.src.sim.network
 

Classes in uchicago.src.sim.network that implement AdjacencyMatrix
 class AbstractAdjacencyMatrix
           
 class AdjacencyBitMatrix
           
 class AdjacencyByteMatrix
          A social network adjacency matrix.
 class AdjacencyDoubleMatrix
          A social network adjacency matrix.
 

Methods in uchicago.src.sim.network that return AdjacencyMatrix
static AdjacencyMatrix AdjacencyMatrixFactory.createAdjacencyMatrix(int rows, int cols, int type)
          Returns an AdjacencyMatrix of the appropriate type.
static AdjacencyMatrix AdjacencyMatrixFactory.createAdjacencyMatrix(java.util.List labels, int type)
           
 AdjacencyMatrix DegNetGenerator.getMatrix(int numRowsToSeed, float[] edgeProbability, boolean isDigraph)
          Returns a random matrix generated using the specified parameters.