在Julia创建一个Erdos-Renyi grah并获得邻接矩阵

时间:2018-01-23 13:41:37

标签: julia

我想用julia生成一个Erdos-Renyi随机图,最重要的是得到邻接矩阵。我尝试了以下代码:

<div class="col-lg-3">
     <div id="matchScore">
        <p class="match">Match {this.state.matches[0].id}</p>
        <div class="team1">
            <h4>{this.state.matches[0].team1}</h4>
        </div>
        <div><h3 align="center">VS</h3></div>
        <div class="team2">
            <h4>{this.state.matches[1].team2}</h4>
        </div>
     </div>
</div>

然而,我得到的邻接矩阵图不正确。 enter image description here

如何正确生成它们?即使它与朱莉娅包装不同。

1 个答案:

答案 0 :(得分:1)

你可以轻松地使用LG:

using LightGraphs
using PyPlot

G = erdos_renyi(100, .1)
A = adjecency_matrix(G) # A is a sparse matrix

# convert to dense matrix before plotting
imshow(full(A))

enter image description here