예제 #1
0
파일: measures.py 프로젝트: omerch/pyconto
def number_of_edges_dir(cmatrix):
    """ Returns the number of edges in a directed 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_dir(m)
    bct.gsl_free(m)
    return n
예제 #2
0
def number_of_edges_dir(cmatrix):
    """ Returns the number of edges in a directed 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_dir(m)
    bct.gsl_free(m)
    return n
예제 #3
0
파일: bct.py 프로젝트: aestrivex/pyconto
def number_of_edges_dir(*args):
  return _bct.number_of_edges_dir(*args)
예제 #4
0
def number_of_edges_dir(*args):
    return _bct.number_of_edges_dir(*args)
예제 #5
0
파일: bct.py 프로젝트: aestrivex/pyconto
def number_of_edges_dir(*args):
  """number_of_edges_dir(gsl_matrix m) -> int"""
  return _bct.number_of_edges_dir(*args)
예제 #6
0
파일: bct.py 프로젝트: omerch/pyconto
def number_of_edges_dir(*args):
    """number_of_edges_dir(gsl_matrix m) -> int"""
    return _bct.number_of_edges_dir(*args)