Mercurial > hg > camir-aes2014
view toolboxes/FullBNT-1.0.7/graph/graph_separated.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
line wrap: on
line source
function sep = graph_separated(G, X, Y, S) G2 = G; G2(S,:) = 0; G2(:,S) = 0; conn = reachability_graph(G2); conn2 = conn(X,Y); sep = all(conn2(:)==0);