def number_of_edges_und(cmatrix): """ Returns the number of edges in an undirected graph. No checking of the edgetype of the cmatrix. Parameters ---------- cmatrix : connection/adjacency matrix """ m = bct.to_gslm(cmatrix.tolist()) n = bct.number_of_edges_und(m) bct.gsl_free(m) return n
def number_of_edges_und(*args): return _bct.number_of_edges_und(*args)
def number_of_edges_und(*args): """number_of_edges_und(gsl_matrix m) -> int""" return _bct.number_of_edges_und(*args)