本文整理汇总了Python中scipy.inf方法的典型用法代码示例。如果您正苦于以下问题:Python scipy.inf方法的具体用法?Python scipy.inf怎么用?Python scipy.inf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scipy
的用法示例。
在下文中一共展示了scipy.inf方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Tu
# 需要导入模块: import scipy [as 别名]
# 或者: from scipy import inf [as 别名]
def Tu(self, s=False, yr=False, myr=False, gyr=False):
return self.Th() * integrate.quad(
self.Tfunc, 0, inf)[0] * self.timeConversion(s=s,
yr=yr,
myr=myr,
gyr=gyr)
# added 12/16/11 - Conor Mancone
# returns conversion from arcseconds to physical angular size
示例2: __call__
# 需要导入模块: import scipy [as 别名]
# 或者: from scipy import inf [as 别名]
def __call__(self, x):
if not isinstance(x, float):
x = float(x)
if x <= 0 and math.ceil(x) == x:
return numpy.inf
return __inline_fora(
"""fun(@unnamed_args:(x), *args) {
return PyFloat(`lgamma(x.@m))
}"""
)(x)
示例3: __init__
# 需要导入模块: import scipy [as 别名]
# 或者: from scipy import inf [as 别名]
def __init__(self, distance_pairs):
self.data = distance_pairs
self._n = len(self.data)
self._processed = scipy.zeros((self._n, 1), dtype=bool)
self._reachability = scipy.ones(self._n) * scipy.inf
self._core_dist = scipy.ones(self._n) * scipy.nan
self._index = scipy.array(range(self._n))
self._nneighbors = scipy.ones(self._n, dtype=int)*self._n
self._cluster_id = -scipy.ones(self._n, dtype=int)
self._is_core = scipy.ones(self._n, dtype=bool)
self._ordered_list = []