I have a matrix A
in Matlab of dimension mx2
that contains in each row the labels of two nodes showing a direct link in a network, e.g.:
if the network has 4
nodes the matrix A
could be A=[1 2; 1 3; 2 1; 2 4; 3 2; 4 1; 4 2]
, where the first row means that there is a link from 1
to 2
, the second row means that there is a link from 1
to 3
, etc.
Could you suggest me a quick way to draw the network from A?
See Question&Answers more detail:os