From 3aee2fd43e3059a699af2b63c6f2395e5a55e515 Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Wed, 27 Sep 2017 15:06:31 +0100 Subject: First commit on github -- NetBunch 1.0 --- doc/er_A.md | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 doc/er_A.md (limited to 'doc/er_A.md') diff --git a/doc/er_A.md b/doc/er_A.md new file mode 100644 index 0000000..0019c4b --- /dev/null +++ b/doc/er_A.md @@ -0,0 +1,69 @@ +er_A(1) -- Sample a random graph from the Erdos-Renyi model A +====== + +## SYNOPSIS + +`er_A` [] + +## DESCRIPTION + +`er_A` samples a random graph with nodes and edges from the +Erdos-Renyi model A, i.e. the ensemble of random graphs where K links +are placed uniformly at random among N nodes. The program dumps the +edge list of the resulting graph on output. If the optional +is provided, the output is written on a file with that name. + +## PARAMETERS + +* : + Number of nodes in the final graph. + +* : + Number of edges in the final graph. + +* : + The (optional) name of the filename where the edge list of the + graph will be saved. + +## EXAMPLES + +The following command: + + $ er_A 1000 3000 + +samples an undirected random network with nodes and +edges using the Erdos-Renyi model A. The output of the command `er_A` +will be the edge-list of the resulting graph, where each (undirected) +edge is reported only once. In order to be useful, such edge-list +should be saved into a file. The following command: + + $ er_A 1000 3000 > er_A_1000_3000.net + +will save the resulting graph in the file er\_A\_1000\_3000.net. Notice +the usage of the symbol "\>" to redirect the output of the program to a +file. + +## SEE ALSO + +er_B(1), ws(1) + +## REFERENCES + +* P\. Erdos, & A. Rényi, "On Random Graphs I", Publ. Math. Debrecen, 6, + 290 (1959) + +* P\.Erdos, & A. Renyi, "On the evolution of random graphs" + Publ. Math. Inst. Hungary. Acad. Sci., 5, 17-61 (1960) + +* V\. Latora, V. Nicosia, G. Russo, "Complex Networks: Principles, + Methods and Applications", Chapter 3, Cambridge University Press + (2017) + +* V\. Latora, V. Nicosia, G. Russo, "Complex Networks: Principles, + Methods and Applications", Appendix 10, Cambridge University Press + (2017) + + +## AUTHORS + +(c) Vincenzo 'KatolaZ' Nicosia 2009-2017 ``. -- cgit v1.2.3