A B C D E F G I J L M N P R S T U W

A

add(Matrix) - Method in class sim.util.mantissa.linalg.Matrix
Add a matrix to the instance.

B

BetweennessCentrality - Class in sim.field.network.stats.actorcentrality
Actor Betweenness Centrality: For undirected graphs (Wasserman and Faust, page 190) I count the geodesics between k and j just once (look for j < k in getValue()) For directed graphs (Wasserman and Faust, page 201) the geodesics from k to j are different from those from j to k, hence the x2 in getMaxValue().
BetweennessCentrality(Network) - Constructor for class sim.field.network.stats.actorcentrality.BetweennessCentrality
 
buildMatrix(int, int, double[], int, int) - Static method in class sim.util.mantissa.linalg.MatrixFactory
Build a matrix of the right subtype.
buildMatrix(int, int, double[]) - Static method in class sim.util.mantissa.linalg.MatrixFactory
Build a matrix of the right subtype.

C

CentralizationStatistics - Class in sim.field.network.stats
 
CentralizationStatistics(Network, NodeIndex) - Constructor for class sim.field.network.stats.CentralizationStatistics
 
CentralizationStatistics(Network, FreemanNodeIndex) - Constructor for class sim.field.network.stats.CentralizationStatistics
 
ClosenessCentrality - Class in sim.field.network.stats.actorcentrality
Sabidussi's index of Actor Closeness Centrality (Wasserman and Faust, page 184)
ClosenessCentrality(Network) - Constructor for class sim.field.network.stats.actorcentrality.ClosenessCentrality
 
columns - Variable in class sim.util.mantissa.linalg.Matrix
number of columns of the matrix.
ConnectivityStatistics - Class in sim.field.network.stats
 
ConnectivityStatistics() - Constructor for class sim.field.network.stats.ConnectivityStatistics
 

D

data - Variable in class sim.util.mantissa.linalg.Matrix
array of the matrix elements.
defaultInstance - Static variable in class sim.field.network.stats.UnitEdgeMetric
A static member to be used by whomever wants to quickly send one of these as a parameter to a statistic function.
defaultInstance - Static variable in class sim.field.network.stats.WeightedEdgeMetric
A static member to be used by whomever wants to quickly send one of these as a parameter to a statistic function.
DegreeCentrality - Class in sim.field.network.stats.actorcentrality
Actor Degree Centrality (Wasserman and Faust, page 178)
DegreeCentrality(Network) - Constructor for class sim.field.network.stats.actorcentrality.DegreeCentrality
 
degreeDistribution(boolean) - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
degreeDistributionLabels() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
DegreePrestige - Class in sim.field.network.stats.actorcentrality
Actor Degree Centrality (Wasserman and Faust, page 202)
DegreePrestige(Network) - Constructor for class sim.field.network.stats.actorcentrality.DegreePrestige
 
DegreeStatistics - Class in sim.field.network.stats
 
DegreeStatistics() - Constructor for class sim.field.network.stats.DegreeStatistics
 
DiagonalMatrix - Class in sim.util.mantissa.linalg
This class implements diagonal matrices of linear algebra.
DiagonalMatrix(int) - Constructor for class sim.util.mantissa.linalg.DiagonalMatrix
Simple constructor.
DiagonalMatrix(int, double) - Constructor for class sim.util.mantissa.linalg.DiagonalMatrix
Simple constructor.
DiagonalMatrix(int, double[]) - Constructor for class sim.util.mantissa.linalg.DiagonalMatrix
Simple constructor.
DiagonalMatrix(DiagonalMatrix) - Constructor for class sim.util.mantissa.linalg.DiagonalMatrix
Copy constructor.
DisplayableNetworkStatistics - Class in sim.portrayal.network.stats
 
DisplayableNetworkStatistics(Network) - Constructor for class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
duplicate() - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
duplicate() - Method in class sim.util.mantissa.linalg.GeneralMatrix
 
duplicate() - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
 
duplicate() - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
 
duplicate() - Method in class sim.util.mantissa.linalg.Matrix
Polymorphic copy operator.
duplicate() - Method in class sim.util.mantissa.linalg.SymetricalMatrix
 
duplicate() - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
 
DYAD_ASYMMETRIC - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
DYAD_CLASSES - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
DYAD_MUTUAL - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
DYAD_NULL - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
dyadCensus(Network) - Static method in class sim.field.network.stats.DyadTriadStatistics
Computes thw dyad census (Wasserman and Faust, pages 512).
DyadTriadStatistics - Class in sim.field.network.stats
 
DyadTriadStatistics() - Constructor for class sim.field.network.stats.DyadTriadStatistics
 

E

EdgeMetric - Interface in sim.field.network.stats
This interface provides a unified way of dealing with the weight of an edge.

F

floydWarshallNumberShortestPathsMatrix(Network, EdgeMetric, double) - Static method in class sim.field.network.stats.NetworkStatistics
Get the numer of shortest paths (from any node to any other node) using the Floyd-Warshall algorithm.
floydWarshallNumberShortestPathsWithIntermediatesMatrix(Network, EdgeMetric, double) - Static method in class sim.field.network.stats.NetworkStatistics
Get the numer of shortest paths (from any node through a second node to a third node) using the Floyd-Warshall algorithm.
floydWarshallShortestPathsMatrix(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Get the shortest paths matrix (from any node to any other node) using the Floyd-Warshall algorithm.
FreemanNodeIndex - Class in sim.field.network.stats.actorcentrality
This centrality metric allows for a "maximum possible value difference" given the size of the net (only the number of nodes in the graph is fixed).
FreemanNodeIndex(Network) - Constructor for class sim.field.network.stats.actorcentrality.FreemanNodeIndex
 

G

GeneralMatrix - Class in sim.util.mantissa.linalg
This class represents matrices of the most general type.
GeneralMatrix(int, int) - Constructor for class sim.util.mantissa.linalg.GeneralMatrix
Simple constructor.
GeneralMatrix(int, int, double[]) - Constructor for class sim.util.mantissa.linalg.GeneralMatrix
Simple constructor.
GeneralMatrix(Matrix) - Constructor for class sim.util.mantissa.linalg.GeneralMatrix
Copy constructor.
GeneralSquareMatrix - Class in sim.util.mantissa.linalg
This class implements general square matrices of linear algebra.
GeneralSquareMatrix(int) - Constructor for class sim.util.mantissa.linalg.GeneralSquareMatrix
Simple constructor.
GeneralSquareMatrix(int, double[]) - Constructor for class sim.util.mantissa.linalg.GeneralSquareMatrix
Simple constructor.
GeneralSquareMatrix(GeneralSquareMatrix) - Constructor for class sim.util.mantissa.linalg.GeneralSquareMatrix
Copy constructor.
getCentralizationIndexMean(boolean) - Method in class sim.field.network.stats.CentralizationStatistics
The average node centrality is Group Centralization for metrics like Information Centralization (Wasserman and Faust, page 197), Proximity Prestige (Wasserman and Faust, page 204), etc.
getCentralizationIndexVariance(boolean, boolean) - Method in class sim.field.network.stats.CentralizationStatistics
 
getClusteringCoefficient(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Computes the clustering coefficient, i.e.
getClusteringCoefficient() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
getColumns() - Method in class sim.util.mantissa.linalg.Matrix
Get the number of columns of the matrix.
getConnectedComponents(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Computes the connected components of an undirected OR the weakly connected components of an directed graph graph using DFS.
getDegreeCCDF(Network, boolean) - Static method in class sim.field.network.stats.DegreeStatistics
CCDF = complementary cummulative distribution function
getDegreeHistogram(Network, boolean) - Static method in class sim.field.network.stats.DegreeStatistics
 
getDensity(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the density of a matrix (the ratio of number of actual edges in the network to the maximum number of edges that can exist in the network).
getDensity() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
getDeterminant(double) - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
getDeterminant(double) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
 
getDeterminant(double) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
 
getDeterminant(double) - Method in class sim.util.mantissa.linalg.SquareMatrix
Get the determinant of the matrix.
getDeterminant(double) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
 
getDiameter(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Computes the diameter of a network (the maximum node eccentricity).
getDiameterByEdge() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
getDiameterByWeight() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
getDigraphEdgeConnectivity(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Computes the edge connectivity of a digraph (directed graph) (i.e.
getEdgeConnectivity(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Computes the edge connectivity of a network (i.e.
getElement(int, int) - Method in class sim.util.mantissa.linalg.Matrix
Get a matrix element.
getGeneralCentralizationIndex() - Method in class sim.field.network.stats.CentralizationStatistics
Computes Freeman's General Centralization Index (Wasserman and Faust, page 177)
getGraphEdgeConnectivity(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Computes the edge connectivity of an undirected graph (i.e.
getGraphTheoreticCenter(Network) - Static method in class sim.field.network.stats.CentralizationStatistics
Identifies the points with the smallest maximal distance to all other points.
getHasSelfLoops(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Checks whether the network has self loops or not (a self-loop is a link from a node to itself).
getInclusiveness(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the inclusiveness of the network (the ratio of non-isolated nodes to total number of nodes in the network).
getInverse(double) - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
getInverse(double) - Method in class sim.util.mantissa.linalg.SquareMatrix
Invert the instance.
getIsolatedNodes(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Returns a list containing the isolated nodes in the network (nodes with zero in-degree and zero out-degree).
getLargeNetworkMeanShortestPath(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the average length of the shortest path between nodes in the network: memory-constrained version.
getMaxCummulativeDifference() - Method in class sim.field.network.stats.actorcentrality.BetweennessCentrality
 
getMaxCummulativeDifference() - Method in class sim.field.network.stats.actorcentrality.ClosenessCentrality
 
getMaxCummulativeDifference() - Method in class sim.field.network.stats.actorcentrality.DegreeCentrality
 
getMaxCummulativeDifference() - Method in class sim.field.network.stats.actorcentrality.DegreePrestige
 
getMaxCummulativeDifference() - Method in class sim.field.network.stats.actorcentrality.FreemanNodeIndex
 
getMaxInDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the maximum in degree of nodes in the graph.
getMaxOutDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the maximum out degree of nodes in the graph.
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.BetweennessCentrality
 
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.ClosenessCentrality
 
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.DegreeCentrality
 
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.DegreePrestige
 
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.InformationCentrality
Sum_{i} getMeasure(i)
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.NodeIndex
 
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.PowerPrestige
 
getMaxValue() - Method in class sim.field.network.stats.actorcentrality.ProximityPrestige
 
getMeanInDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the mean in degree of nodes in the graph.
getMeanOutDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the mean out degree of nodes in the graph.
getMeanShortestPath(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the average length of the shortest path between nodes in the network.
getMinInDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the minimum in degree of nodes in the graph.
getMinOutDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the minimum out degree of nodes in the graph.
getNodeConnectivity(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Computes the node connectivity of a network (i.e.
getNodeEccentricity(Network, Object, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the eccentricity of a node.
getNumberActualEdges(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the number of edges in the network.
getNumberDirectTriads(Network, Object, Object) - Static method in class sim.field.network.stats.DyadTriadStatistics
Returns the number of direct triads (number of parent nodes that point to both nodes sent as parameters).
getNumberNodes(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the number of nodes in the network.
getNumberPotentialEdges(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the maximum number of edges in the network.
getNumberShortestPathsMatrix(Network, EdgeMetric, double) - Static method in class sim.field.network.stats.NetworkStatistics
Get the matrix with number of shortest paths (from any node to any other node)
getNumberShortestPathsWithIntermediatesMatrix(Network, EdgeMetric, double) - Static method in class sim.field.network.stats.NetworkStatistics
Get the numer of shortest paths (from any node through a second node to a third node).
getRadius(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Compute the radius of a network (the minimum node eccentricity).
getRangeForColumn(int) - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
getRangeForColumn(int) - Method in class sim.util.mantissa.linalg.GeneralMatrix
 
getRangeForColumn(int) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
 
getRangeForColumn(int) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
 
getRangeForColumn(int) - Method in class sim.util.mantissa.linalg.Matrix
Set a range to the non null part covered by a column.
getRangeForColumn(int) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
 
getRangeForRow(int) - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
getRangeForRow(int) - Method in class sim.util.mantissa.linalg.GeneralMatrix
 
getRangeForRow(int) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
 
getRangeForRow(int) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
 
getRangeForRow(int) - Method in class sim.util.mantissa.linalg.Matrix
Set a range to the non null part covered by a row.
getRangeForRow(int) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
 
getRows() - Method in class sim.util.mantissa.linalg.Matrix
Get the number of rows of the matrix.
getShortestPath(Network, Object, Object, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Returns the shortest path (number of edges) between two nodes indicated by their indexes in the allNodes Bag.
getShortestPaths(Network, Object, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Returns a vector with distances to the nodes in the graph.
getShortestPathsMatrix(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Get the shortest paths matrix (from any node to any other node)
getStandardizedValue(Object) - Method in class sim.field.network.stats.actorcentrality.NodeIndex
The value of the metric might depend on the size of the graph.
getStandarnizedMaxCummulativeDifference() - Method in class sim.field.network.stats.actorcentrality.FreemanNodeIndex
 
getStronglyConnectedComponents(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Computes the strongly connected components of an ORIENTED graph.
getSumOfDegrees(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the sum of degrees of all nodes in the network.
getSymmetryCoefficient(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Computes the amount of symmetry in the network, ie the ratio of edges i->j and j->i over all edges.
getSymmetryCoefficient() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
getTranspose() - Method in class sim.util.mantissa.linalg.Matrix
Compute the transpose of the instance.
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.BetweennessCentrality
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.ClosenessCentrality
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.DegreeCentrality
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.DegreePrestige
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.InformationCentrality
 
getValue(int) - Method in class sim.field.network.stats.actorcentrality.InformationCentrality
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.NodeIndex
 
getValue(int) - Method in class sim.field.network.stats.actorcentrality.NodeIndex
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.PowerPrestige
 
getValue(int) - Method in class sim.field.network.stats.actorcentrality.PowerPrestige
 
getValue(Object) - Method in class sim.field.network.stats.actorcentrality.ProximityPrestige
 
getVarInDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the variance of the in degree of nodes in the graph.
getVarOutDegree(Network) - Static method in class sim.field.network.stats.DegreeStatistics
Returns the variance of the out degree of nodes in the graph.
getWeight(Edge) - Method in interface sim.field.network.stats.EdgeMetric
Returns the weight of the edge.
getWeight(Edge) - Method in class sim.field.network.stats.UnitEdgeMetric
The weight of an edge is 1.
getWeight(Edge) - Method in class sim.field.network.stats.WeightedEdgeMetric
Call the getWeight method of the edge to compute the weight of the edge.

I

InformationCentrality - Class in sim.field.network.stats.actorcentrality
Actor Information Centrality (Wasserman and Faust, page 195 for undirected and page 201 for directed graphs).
InformationCentrality(Network, EdgeMetric) - Constructor for class sim.field.network.stats.actorcentrality.InformationCentrality
 
isConnected(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Determines whether the graph is connected (for undirected graphs) OR weakly connected (for directed graphs)
isMultigraphNetwork(Network) - Static method in class sim.field.network.stats.NetworkStatistics
Checks whether the network is a multigraph or not (a multigraph may contain several edges from a node i to a node j).
isStronglyConnected(Network) - Static method in class sim.field.network.stats.ConnectivityStatistics
Checks if a directed graph is strongly connected.

J

johnsonNumberShortestPathsMatrix(Network, EdgeMetric, double) - Static method in class sim.field.network.stats.NetworkStatistics
Get the shortest paths matrix (from any node to any other node) using the Johnson algorithm for sparse graphs.
johnsonShortestPathsMatrix(Network, EdgeMetric) - Static method in class sim.field.network.stats.NetworkStatistics
Get the shortest paths matrix (from any node to any other node) using the Johnson algorithm for sparse graphs.

L

loglogScaleDegreeCCDF(boolean) - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
loglogScaleDegreeCCDFLabels() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
LowerTriangularMatrix - Class in sim.util.mantissa.linalg
This class implements lower triangular matrices of linear algebra.
LowerTriangularMatrix(int) - Constructor for class sim.util.mantissa.linalg.LowerTriangularMatrix
Simple constructor.
LowerTriangularMatrix(int, double[]) - Constructor for class sim.util.mantissa.linalg.LowerTriangularMatrix
Simple constructor.
LowerTriangularMatrix(LowerTriangularMatrix) - Constructor for class sim.util.mantissa.linalg.LowerTriangularMatrix
Copy constructor.

M

MAN_TRIAD_CLASSES - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
MantissaException - Exception in sim.util.mantissa
This class is the base class for all specific exceptions thrown by the mantissa classes.
MantissaException() - Constructor for exception sim.util.mantissa.MantissaException
Simple constructor.
MantissaException(String) - Constructor for exception sim.util.mantissa.MantissaException
Simple constructor.
MantissaException(Throwable) - Constructor for exception sim.util.mantissa.MantissaException
Simple constructor.
MantissaException(String, Throwable) - Constructor for exception sim.util.mantissa.MantissaException
Simple constructor.
Matrix - Class in sim.util.mantissa.linalg
This class factor all services common to matrices.
Matrix(int, int) - Constructor for class sim.util.mantissa.linalg.Matrix
Simple constructor.
Matrix(int, int, double[]) - Constructor for class sim.util.mantissa.linalg.Matrix
Simple constructor.
Matrix(Matrix) - Constructor for class sim.util.mantissa.linalg.Matrix
Copy constructor.
MatrixFactory - Class in sim.util.mantissa.linalg
This class is a factory for the linear algebra package.
mul(Matrix) - Method in class sim.util.mantissa.linalg.Matrix
Multiply the instance by a matrix.
mul(double) - Method in class sim.util.mantissa.linalg.Matrix
Multiply the instance by a scalar.

N

net - Variable in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
network - Variable in class sim.field.network.stats.actorcentrality.NodeIndex
 
NetworkStatistics - Class in sim.field.network.stats
Contributor: Martin Pokropp
NetworkStatistics() - Constructor for class sim.field.network.stats.NetworkStatistics
 
nodeEccentricityDistribution(EdgeMetric) - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
nodeEccentricityLabels() - Method in class sim.portrayal.network.stats.DisplayableNetworkStatistics
 
NodeIndex - Class in sim.field.network.stats.actorcentrality
Actor Centrality Index
NodeIndex(Network) - Constructor for class sim.field.network.stats.actorcentrality.NodeIndex
 

P

PowerPrestige - Class in sim.field.network.stats.actorcentrality
Bonacich's Power Centrality
PowerPrestige(Network, EdgeMetric) - Constructor for class sim.field.network.stats.actorcentrality.PowerPrestige
 
PowerPrestige(Network, double, EdgeMetric) - Constructor for class sim.field.network.stats.actorcentrality.PowerPrestige
 
ProximityPrestige - Class in sim.field.network.stats.actorcentrality
Lin's Proximity Prestige (Wasserman and Faust, page 203)
ProximityPrestige(Network) - Constructor for class sim.field.network.stats.actorcentrality.ProximityPrestige
 

R

rows - Variable in class sim.util.mantissa.linalg.Matrix
number of rows of the matrix.

S

selfAdd(Matrix) - Method in class sim.util.mantissa.linalg.GeneralMatrix
Add a matrix to the instance.
selfAdd(SquareMatrix) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
Add a matrix to the instance.
selfAdd(LowerTriangularMatrix) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
Add a matrix to the instance.
selfAdd(SymetricalMatrix) - Method in class sim.util.mantissa.linalg.SymetricalMatrix
Add a matrix to the instance.
selfAdd(UpperTriangularMatrix) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
Add a matrix to the instance.
selfAddWAAt(double, double[]) - Method in class sim.util.mantissa.linalg.SymetricalMatrix
Add the symetrical matrix resulting from the product w.A.At to the instance.
selfMul(double) - Method in class sim.util.mantissa.linalg.Matrix
Multiply the instance by a scalar.
selfSub(Matrix) - Method in class sim.util.mantissa.linalg.GeneralMatrix
Substract a matrix from the instance.
selfSub(SquareMatrix) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
Substract a matrix from the instance.
selfSub(LowerTriangularMatrix) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
Substract a matrix from the instance.
selfSub(SymetricalMatrix) - Method in class sim.util.mantissa.linalg.SymetricalMatrix
Substract a matrix from the instance.
selfSub(UpperTriangularMatrix) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
Substract a matrix from the instance.
setElement(int, int, double) - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
setElement(int, int, double) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
 
setElement(int, int, double) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
 
setElement(int, int, double) - Method in class sim.util.mantissa.linalg.Matrix
Set a matrix element.
setElement(int, int, double) - Method in class sim.util.mantissa.linalg.SymetricalMatrix
Set a matrix element.
setElement(int, int, double) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
 
setElementAndSymetricalElement(int, int, double) - Method in class sim.util.mantissa.linalg.SymetricalMatrix
Set both a matrix element and its symetrical element.
setField(Network, GUIState) - Method in class sim.portrayal.network.stats.SocialNetworkInspector
 
sim.field.network.stats - package sim.field.network.stats
 
sim.field.network.stats.actorcentrality - package sim.field.network.stats.actorcentrality
 
sim.portrayal.network.stats - package sim.portrayal.network.stats
 
sim.util.mantissa - package sim.util.mantissa
 
sim.util.mantissa.linalg - package sim.util.mantissa.linalg
 
SingularMatrixException - Exception in sim.util.mantissa.linalg
This class represent exceptions thrown by some matrix operations.
SingularMatrixException(String) - Constructor for exception sim.util.mantissa.linalg.SingularMatrixException
Simple constructor.
SocialNetworkInspector - Class in sim.portrayal.network.stats
An inspector for Networks which provides basic network statistical information of interest to the user.
SocialNetworkInspector() - Constructor for class sim.portrayal.network.stats.SocialNetworkInspector
 
solve(Matrix, double) - Method in class sim.util.mantissa.linalg.DiagonalMatrix
 
solve(Matrix, double) - Method in class sim.util.mantissa.linalg.GeneralSquareMatrix
 
solve(Matrix, double) - Method in class sim.util.mantissa.linalg.LowerTriangularMatrix
 
solve(Matrix, double) - Method in class sim.util.mantissa.linalg.SquareMatrix
Solve the A.X = B equation.
solve(SquareMatrix, double) - Method in class sim.util.mantissa.linalg.SquareMatrix
Solve the A.X = B equation.
solve(Matrix, double) - Method in class sim.util.mantissa.linalg.UpperTriangularMatrix
 
SquareMatrix - Class in sim.util.mantissa.linalg
This class factor all services common to square matrices of linear algebra.
SquareMatrix(int) - Constructor for class sim.util.mantissa.linalg.SquareMatrix
Simple constructor.
SquareMatrix(int, double[]) - Constructor for class sim.util.mantissa.linalg.SquareMatrix
Simple constructor.
SquareMatrix(SquareMatrix) - Constructor for class sim.util.mantissa.linalg.SquareMatrix
Copy constructor.
sub(Matrix) - Method in class sim.util.mantissa.linalg.Matrix
Substract a matrix from the instance.
SymetricalMatrix - Class in sim.util.mantissa.linalg
This class implements symetrical matrices of linear algebra.
SymetricalMatrix(int) - Constructor for class sim.util.mantissa.linalg.SymetricalMatrix
Simple constructor.
SymetricalMatrix(int, double[]) - Constructor for class sim.util.mantissa.linalg.SymetricalMatrix
Simple constructor.
SymetricalMatrix(SymetricalMatrix) - Constructor for class sim.util.mantissa.linalg.SymetricalMatrix
Copy constructor.
SymetricalMatrix(double, double[]) - Constructor for class sim.util.mantissa.linalg.SymetricalMatrix
Build the symetrical matrix resulting from the product w.A.At.

T

toString() - Method in class sim.util.mantissa.linalg.Matrix
 
TRIAD_003 - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_012 - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_021C - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_021D - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_021U - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_030C - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_030T - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_102 - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_111D - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_111U - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_120C - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_120D - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_120U - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_201 - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_210 - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
TRIAD_300 - Static variable in class sim.field.network.stats.DyadTriadStatistics
 
triadCensus(Network) - Static method in class sim.field.network.stats.DyadTriadStatistics
Computes the triad census (Wasserman and Faust, pages 564-567).

U

UnitEdgeMetric - Class in sim.field.network.stats
The UnitEdgeMetric counts each edge as having weight 1.
UnitEdgeMetric() - Constructor for class sim.field.network.stats.UnitEdgeMetric
 
updateInspector() - Method in class sim.portrayal.network.stats.SocialNetworkInspector
 
UpperTriangularMatrix - Class in sim.util.mantissa.linalg
This class implements upper triangular matrices of linear algebra.
UpperTriangularMatrix(int) - Constructor for class sim.util.mantissa.linalg.UpperTriangularMatrix
Simple constructor.
UpperTriangularMatrix(int, double[]) - Constructor for class sim.util.mantissa.linalg.UpperTriangularMatrix
Simple constructor.
UpperTriangularMatrix(UpperTriangularMatrix) - Constructor for class sim.util.mantissa.linalg.UpperTriangularMatrix
Copy constructor.

W

WeightedEdgeMetric - Class in sim.field.network.stats
The WeightedEdgeMetric is a simple class that implements the WeightComputer interface for computing the weight of an edge.
WeightedEdgeMetric() - Constructor for class sim.field.network.stats.WeightedEdgeMetric
 

A B C D E F G I J L M N P R S T U W