示例#1
0
def set_safe_mode(status):
    """ Validity of cmatrix tested
    
    By default, bct-cpp checks the status of any connection matrix passed
    to a specialized function (i.e., one such as `bct.clustering_coef_bu`
    which is only intended to work on binary undirected matrices).
    If this status check fails, a message is printed to stderr, but the
    function still attempts to complete the calculation. To disable this
    behavior and avoid the minor computational overhead, call
    `bct.set_safe_mode(False)`. 
    """
    bct.set_safe_mode(status)
示例#2
0
def set_safe_mode(status):
    """ Validity of cmatrix tested
    
    By default, bct-cpp checks the status of any connection matrix passed
    to a specialized function (i.e., one such as `bct.clustering_coef_bu`
    which is only intended to work on binary undirected matrices).
    If this status check fails, a message is printed to stderr, but the
    function still attempts to complete the calculation. To disable this
    behavior and avoid the minor computational overhead, call
    `bct.set_safe_mode(False)`. 
    """
    bct.set_safe_mode(status)
示例#3
0
文件: bct.py 项目: aestrivex/pyconto
def set_safe_mode(*args):
  return _bct.set_safe_mode(*args)
示例#4
0
def set_safe_mode(*args):
    return _bct.set_safe_mode(*args)
示例#5
0
文件: bct.py 项目: aestrivex/pyconto
def set_safe_mode(*args):
  """set_safe_mode(bool safe_mode)"""
  return _bct.set_safe_mode(*args)
示例#6
0
文件: bct.py 项目: omerch/pyconto
def set_safe_mode(*args):
    """set_safe_mode(bool safe_mode)"""
    return _bct.set_safe_mode(*args)