about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/graph/parents.m
blob: 24354a74fce6024afde9fc6161ef7aae6a9c1d37 (plain)
1
2
3
4
5
function ps = parents(adj_mat, i)
% PARENTS Return the list of parents of node i
% ps = parents(adj_mat, i)

ps = find(adj_mat(:,i))';