Uses of Interface
de.aitools.iv.graphdrawing.datastructures.graph.AdjacencyMatrix

Packages that use AdjacencyMatrix
de.aitools.iv.graphdrawing.datastructures.graph   
de.aitools.iv.graphdrawing.datastructures.graph.algorithms   
 

Uses of AdjacencyMatrix in de.aitools.iv.graphdrawing.datastructures.graph
 

Classes in de.aitools.iv.graphdrawing.datastructures.graph that implement AdjacencyMatrix
 class AdjacencyMatrixComp
           
 

Methods in de.aitools.iv.graphdrawing.datastructures.graph that return AdjacencyMatrix
 AdjacencyMatrix ExampleGraphs.getGraph(UndirectedGraph g, int id)
          usage: if g is null the graph is returned as AdjacencyMatrix else null is returned and g is used.
 AdjacencyMatrix ExampleGraphs.graph1(UndirectedGraph g)
           
 AdjacencyMatrix ExampleGraphs.graph2(UndirectedGraph g)
           
 AdjacencyMatrix ExampleGraphs.randomGraph(UndirectedGraph g, double sparingness, int vertexCount)
           
 

Methods in de.aitools.iv.graphdrawing.datastructures.graph with parameters of type AdjacencyMatrix
 void AdjacencyMatrix.clone(AdjacencyMatrix o)
           
 void AdjacencyMatrixComp.clone(AdjacencyMatrix o)
           
 

Uses of AdjacencyMatrix in de.aitools.iv.graphdrawing.datastructures.graph.algorithms
 

Methods in de.aitools.iv.graphdrawing.datastructures.graph.algorithms that return AdjacencyMatrix
 AdjacencyMatrix KNNGraph.createKNNGraph(AdjacencyMatrix m, int k)
           
 AdjacencyMatrix KNNGraph.createMutualKNNGraph(AdjacencyMatrix m, int k)
           
 

Methods in de.aitools.iv.graphdrawing.datastructures.graph.algorithms with parameters of type AdjacencyMatrix
 double KNNGraph.computeAverageNNGraph(AdjacencyMatrix m)
           
 int KNNGraph.computeEstimatedMkNNGraph(AdjacencyMatrix m)
           
 void KNNGraph.computeKNNGraph(AdjacencyMatrix m, int k)
           
 double KNNGraph.computeLocalEllbowGraph(AdjacencyMatrix m)
           
 void KNNGraph.computeMutualKNNGraph(AdjacencyMatrix m, double ratio)
           
 void KNNGraph.computeMutualKNNGraph(AdjacencyMatrix m, int k)
           
 AdjacencyMatrix KNNGraph.createKNNGraph(AdjacencyMatrix m, int k)
           
 AdjacencyMatrix KNNGraph.createMutualKNNGraph(AdjacencyMatrix m, int k)
           
 int KNNGraph.estimateKWithMST(AdjacencyMatrix m)
           
 double KNNGraph.estimateLowThresholdWithMST(AdjacencyMatrix m)
           
 double KNNGraph.estimateRelevanceRatioWithMST(AdjacencyMatrix m)
           
 double KNNGraph.estimateThresholdWithMST(AdjacencyMatrix m)