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_B.1.html | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 doc/er_B.1.html (limited to 'doc/er_B.1.html') diff --git a/doc/er_B.1.html b/doc/er_B.1.html new file mode 100644 index 0000000..4b7a963 --- /dev/null +++ b/doc/er_B.1.html @@ -0,0 +1,158 @@ + + + + + + er_B(1) - Sample a random graph from the Erdos-Renyi model B + + + + + +
+ + + +
    +
  1. er_B(1)
  2. +
  3. www.complex-networks.net
  4. +
  5. er_B(1)
  6. +
+ +

NAME

+

+ er_B - Sample a random graph from the Erdos-Renyi model B +

+ +

SYNOPSIS

+ +

er_B N p [fileout]

+ +

DESCRIPTION

+ +

er_B samples a random graph from the Erdos-Renyi model B, i.e. a +graph with N nodes where each of the <N(N-1)/2> edges is created +independently with probability p. The program dumps the edge list of +the resulting graph on output. If the optional fileout is provided, +the output is written on a file with that name.

+ +

PARAMETERS

+ +
+
N

Number of nodes in the final graph.

+
p

Edge probability.

+
fileout

The (optional) name of the filename where the edge list of the + graph will be saved.

+
+ + +

EXAMPLES

+ +

The following command:

+ +
      $ er_B 1000 0.006
+
+ +

samples an undirected random network with N=1000 nodes where each +possible edge is created with probability p=0.006. The output of +the command er_B 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_B 1000 0.006 > er_B_1000_0.006.net
+
+ +

will save the resulting graph in the file +er_B_1000_0.006.net. Notice the usage of the symbol ">" to +redirect the output of the program to a file.

+ +

SEE ALSO

+ +

er_A(1), ws(1)

+ +

REFERENCES

+ + + + +

AUTHORS

+ +

(c) Vincenzo 'KatolaZ' Nicosia 2009-2017 <v.nicosia@qmul.ac.uk>.

+ + +
    +
  1. www.complex-networks.net
  2. +
  3. September 2017
  4. +
  5. er_B(1)
  6. +
+ +
+ + -- cgit v1.2.3