Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.478.883 Times

Undirected software
 

Undirected

Added: June 19, 2013 | Visits: 345

Connected Component Analysis on an Undirected Graph Connected component analysis on undirected graphs, with thresholding and connectivity constraints. Tristan Ursell, (c) 2012Connected component analysis on an undirected graph, with variousthresholding and connectivity constraints.[groups,orphans] = graph_analysis(W);[groups,orphans] =... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (41): Connected Component Analysis on an Undirected Graph Download

Added: April 08, 2010 | Visits: 656

Bio::ConnectDots::SimpleGraph Bio::ConnectDots::SimpleGraph is a simple, hopefully fast undirected graph package. SYNOPSIS use SimpleGraph; my $graph=new Bio::ConnectDots::SimpleGraph; # read pairs of nodes from STDIN while (<>) { my($node1,$node2)=split; $graph->add_edge($node1,$node2); } my @nodes=graph->nodes;... Platforms: *nix

License: Freeware Size: 102.4 KB Download (93): Bio::ConnectDots::SimpleGraph Download

Added: May 10, 2013 | Visits: 581

Finding Eulerian path in undirected graph This script takes as input a graph and outputs Eulerian path (if such exists). The worst running time is O(E^2). Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (58): Finding Eulerian path in undirected graph Download

Added: April 23, 2013 | Visits: 427

Count all cycles in simple undirected graph Counts all cycles in input graph up to (optional) specified size limit, using a backtracking algorithm. Designed for undirected graphs with no self-loops or multiple edges. Returns count of each size cycle from 3 up to size limit, and elapsed time.Algorithm is guaranteed to find each cycle... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (48): Count all cycles in simple undirected graph Download

Added: April 20, 2013 | Visits: 364

Adjacency Matrix GUI Simple GUI for drawing a undirected vertex-edge network/graph. Adjacency matrix for the graph displays in the command line. Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (47): Adjacency Matrix GUI Download

Added: August 22, 2013 | Visits: 451

Generate Graphs This is a simple tool for generating and visualizing graphs (directed, undirected and undirected random graphs). It is still a working copy -- so please bear with me as I fix bugs. Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 30.72 KB Download (49): Generate Graphs Download

Added: March 12, 2010 | Visits: 864

Bio::Graph::SimpleGraph Bio::Graph::SimpleGraph is a Perl module that can create and manipulate undirected graphs. SYNOPSIS use Bio::Graph::SimpleGraph; my $graph=new SimpleGraph; # read pairs of nodes from STDIN while (<>) { my($node1,$node2)=split; $graph->add_edge($node1,$node2); } my @nodes=graph->nodes;... Platforms: *nix

License: Freeware Size: 5.6 MB Download (107): Bio::Graph::SimpleGraph Download

Released: September 13, 2012  |  Added: September 13, 2012 | Visits: 454

QuickGraph The QuickGraph package will provide generic directed / undirected graph datastructures and algorithms for .Net 2.0 and up. QuickGraph comes with algorithms such as depth first seach, breath first search, A search, shortest path, k-shortest path, maximum flow, minimum spanning tree, least common... Platforms: Windows

License: Freeware Download (51): QuickGraph Download

Added: April 19, 2013 | Visits: 496

B-A Scale-Free Network Generation and Visualization *Description and Cautions-The SFNG m-file is used to simulate the B-A algorithm and returns scale-free networks of given node sizes. Understanding the B-A algorithm is key to using this code to its fullest. Due to Matlab resource limitations, it may not be possible to generate networks much... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 61.44 KB Download (55): B-A Scale-Free Network Generation and Visualization Download

Added: July 31, 2013 | Visits: 365

Dijkstra's Shortest Path Algorithm This function can 1. Find the shortest path and distance from a starting node to an ending node on a map** 2. Find the shortest paths and distances from a starting node to ALL other nodes on a map****The map should consist of nodes and segments, such that: 1. nodes have the format [ID X Y] or [ID... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Dijkstra's Shortest Path Algorithm Download

Calculation of distances from a given set of points to a set of segments CSMV calculates distances from a given set of points to a set of linear segments SYNOPSIS: [squared_distances_to_segments I]=csmv(P,R,Q,to_plot) [squared_distances_to_segments I]=csmv(P,R,Q,...) INPUT P,R : arrays of coordinates of 2n segment endpoints (i.e., if there are n segments considered in... Platforms: Matlab


Added: June 04, 2013 | Visits: 382

Random Regular generator the function:A = createRandRegGraph(vertNum, deg)create a simple d-regular undirected graphvertNum - number of vertices.deg - the degree of each vertex.A is asparse matrix representation of the graph.reference for "The pairing model":http://citeseerx.ist.psu.edu/viewdoc/downl...p=rep1&type=pdf Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (47): Random Regular generator Download

Added: May 21, 2013 | Visits: 219

APAC algorithm This function has been designed to implement APAC algorithm proposed by Ricardo SimdoTAes in his research contribution in Revista de Estudos PolitdoTecnicos, Polytechnical Studies Review, 2009, Vol VII, ndlDo12, 039-055. This code has been modified from the algorithm so as to get all paths... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): APAC algorithm Download

Added: November 15, 2013 | Visits: 350

igraph for Linux igraph is a free software package for creating and manipulating undirected and directed graphs. It includes implementations for classic graph theory problems like minimum spanning trees and network flow, and also implements algorithms for some recent network analysis methods, like community... Platforms: *nix

License: Freeware Size: 1.08 MB Download (32): igraph for Linux Download

Added: October 09, 2010 | Visits: 1.086

Graph::ModularDecomposition Graph::ModularDecomposition is a Perl module for modular decomposition of directed graphs. SYNOPSIS use Graph::ModularDecomposition qw(pairstring_to_graph tree_to_string); my $g = new Graph::ModularDecomposition; my $h = $g->pairstring_to_graph( ab,ac,bc ); print "yesn" if... Platforms: *nix

License: Freeware Size: 13.31 KB Download (96): Graph::ModularDecomposition Download

Added: July 09, 2010 | Visits: 973

Algorithm::SocialNetwork Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #... Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): Algorithm::SocialNetwork Download

Added: February 18, 2010 | Visits: 1.055

GraphViz GraphViz is a Perl interface to the GraphViz graphing tool. SYNOPSIS use GraphViz; my $g = GraphViz->new(); $g->add_node(London); $g->add_node(Paris, label => City ofnlurve); $g->add_node(New York); $g->add_edge(London => Paris); $g->add_edge(London => New York, label => Far);... Platforms: *nix

License: Freeware Size: 83.97 KB Download (96): GraphViz Download

Added: May 10, 2013 | Visits: 331

txt2graph txt2graph should visualize the structure and dependencies of a text. It reads a text document from stdin, removes all non-alphas and generates an array (list) of words. Then it converts german-umlauts, because graphviz can only handle clean ASCII as node-description and output a dot-file for a... Platforms: *nix, Perl, BSD

License: Freeware Download (62): txt2graph Download

Added: August 01, 2013 | Visits: 382

Prims Algorithm In the mathematical field of graph theory, a spanning tree of a connected, undirected graph is a tree which includes every vertex of that graph. More generally, a spanning forest of an arbitrary undirected graph is a forest which includes every vertex of the graph. Spanning forests always exist,... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (45): Prims Algorithm Download

Added: April 29, 2013 | Visits: 288

Graph GUI Edit a graph or draw a new one with this GUI.Usage:>> graph_gui;or>> graph_gui(A,xy); Controls:Use the radio buttons to select an action:1. To DRAW a new VERTEX, select 'Draw' and 'Vertex'. Then click inside the axes in the desired location.2. To DELETE a VERTEX, select 'Delete' and 'Vertex'.... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Graph GUI Download