3

我有一个有向图的GML文件(政治博客)。我想在 Matlab 中使用这个图作为邻接矩阵。我怎样才能转换它?谢谢。

4

2 回答 2

1

here为此目的有一个示例代码:

%Extracting edges from gml file graph
fileName = 'dolphins.gml';
inputfile = fopen(fileName);
A=[];
l=0;
k=1;
while 1
      % Get a line from the input file
      tline = fgetl(inputfile);
      % Quit if end of file
      if ~ischar(tline)
          break
      end
      nums = regexp(tline,'\d+','match');
      if length(nums)
          if l==1
              l=0;
              A(k,2)=str2num(nums{1});  
              k=k+1;
              continue;
          end
          A(k,1)=str2num(nums{1});
          l=1;
      else
          l=0;
          continue;
      end
end

A[],一个[m x 2]矩阵,包含节点之间的链接。

于 2013-04-10T07:35:40.857 回答
0

使用 R,您可以使用:

library("multiplex") ## >v1.5 
read.gml(file, as="matrix")
于 2015-07-07T10:07:21.690 回答