Пример #1
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
Пример #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
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
def number_of_edges_dir(*args):
  """number_of_edges_dir(gsl_matrix m) -> int"""
  return _bct.number_of_edges_dir(*args)
Пример #6
0
def number_of_edges_dir(*args):
    """number_of_edges_dir(gsl_matrix m) -> int"""
    return _bct.number_of_edges_dir(*args)