about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/graph/mk_undirected.m
blob: 0a1614aa2e8c55d0663270648664d64f4a849673 (plain)
1
2
3
4
5
6
7
8
9
10
11
function U = mk_undirected(G)

[nr nc] = size(G);
U = G;
for i=1:nr
  for j=1:nc
    if U(i,j)==1
      U(j,i) = 1;
    end
  end
end