예제 #1
0
파일: measures.py 프로젝트: omerch/pyconto
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
예제 #2
0
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
예제 #3
0
파일: bct.py 프로젝트: aestrivex/pyconto
def number_of_edges_und(*args):
  return _bct.number_of_edges_und(*args)
예제 #4
0
def number_of_edges_und(*args):
    return _bct.number_of_edges_und(*args)
예제 #5
0
파일: bct.py 프로젝트: aestrivex/pyconto
def number_of_edges_und(*args):
  """number_of_edges_und(gsl_matrix m) -> int"""
  return _bct.number_of_edges_und(*args)
예제 #6
0
파일: bct.py 프로젝트: omerch/pyconto
def number_of_edges_und(*args):
    """number_of_edges_und(gsl_matrix m) -> int"""
    return _bct.number_of_edges_und(*args)