Code covered by the BSD License  

Highlights from
MGraph

from MGraph by junbai wang
Probabilistic graphical models for reconstruction of genetic regulatory networks using DNA microarra

isSim=isSimplical_node(G,i)
function isSim=isSimplical_node(G,i)
%test node i whether it is simplical node in graph G
%
nb_i=neighbors(G,i);
sub_setnb=G(nb_i,nb_i);
len_nb_i=length(nb_i);
isSim=(len_nb_i^2-len_nb_i)/2==sum(sum(triu(sub_setnb)));
        %it is simplicial nodes then 1

Contact us at files@mathworks.com