Uses of Class
edu.umbc.cs.maple.utils.SGTUtils.LaplacianType
-
Packages that use SGTUtils.LaplacianType Package Description edu.umbc.cs.maple.utils -
-
Uses of SGTUtils.LaplacianType in edu.umbc.cs.maple.utils
Methods in edu.umbc.cs.maple.utils that return SGTUtils.LaplacianType Modifier and Type Method Description static SGTUtils.LaplacianType
SGTUtils.LaplacianType. valueOf(String name)
Returns the enum constant of this type with the specified name.static SGTUtils.LaplacianType[]
SGTUtils.LaplacianType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in edu.umbc.cs.maple.utils with parameters of type SGTUtils.LaplacianType Modifier and Type Method Description static Jama.Matrix
SGTUtils. directedWeightedAdjacencyToLaplacian(Jama.Matrix adjacencyMatrix, SGTUtils.LaplacianType laplacianType)
Computes the Laplacian matrix for a directed weighted adjacency matrix A.static Jama.Matrix
SGTUtils. undirectedWeightedAdjacencyToLaplacian(Jama.Matrix adjacencyMatrix, SGTUtils.LaplacianType laplacianType)
Computes the Laplacian matrix for an undirected weighted adjacency matrix A.static Jama.Matrix
SGTUtils. weightedAdjacencyToLaplacian(Jama.Matrix adjacencyMatrix, SGTUtils.LaplacianType laplacianType)
Computes the Laplacian matrix for a weighted adjacency matrix A.
-