本文整理匯總了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 = []