connectivityDistribution()
Calculate and display the network's connectivity distribution.
Syntax
distr = connectivityDistribution(node)
Description
connectivityDistribution(node)
calculates and displays the connectivity distribution of the network defined by
node
Input:
node - 1 x n structure-array containing node information
Output:
distr - 1 x n array containing connectivity distribution
Example
>> [node, kavreal] = bnKav(12,5.5)
creates a network with N=12
nodes and an average connectivity of K=5.5. In order to see how
the connections are distributed on the 12 nodes, type:
>> connectivityDistribution(node)
See also
averageConnectivity()
|