當前位置: 首頁>>代碼示例>>Python>>正文


Python scipy.inf方法代碼示例

本文整理匯總了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 
開發者ID:cmancone,項目名稱:easyGalaxy,代碼行數:11,代碼來源:cosmology.py

示例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) 
開發者ID:ufora,項目名稱:ufora,代碼行數:14,代碼來源:pure_scipy.py

示例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 = [] 
開發者ID:ahotovec,項目名稱:REDPy,代碼行數:14,代碼來源:optics.py


注:本文中的scipy.inf方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。