本文整理匯總了Python中numpy.core.finfo方法的典型用法代碼示例。如果您正苦於以下問題:Python core.finfo方法的具體用法?Python core.finfo怎麽用?Python core.finfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類numpy.core
的用法示例。
在下文中一共展示了core.finfo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_singleton
# 需要導入模塊: from numpy import core [as 別名]
# 或者: from numpy.core import finfo [as 別名]
def test_singleton(self):
ftype = finfo(float)
ftype2 = finfo(float)
assert_equal(id(ftype), id(ftype2))
示例2: test_finfo_repr
# 需要導入模塊: from numpy import core [as 別名]
# 或者: from numpy.core import finfo [as 別名]
def test_finfo_repr(self):
expected = "finfo(resolution=1e-06, min=-3.4028235e+38," + \
" max=3.4028235e+38, dtype=float32)"
assert_equal(repr(np.finfo(np.float32)), expected)
示例3: test_instances
# 需要導入模塊: from numpy import core [as 別名]
# 或者: from numpy.core import finfo [as 別名]
def test_instances():
iinfo(10)
finfo(3.0)
示例4: test_plausible_finfo
# 需要導入模塊: from numpy import core [as 別名]
# 或者: from numpy.core import finfo [as 別名]
def test_plausible_finfo():
# Assert that finfo returns reasonable results for all types
for ftype in np.sctypes['float'] + np.sctypes['complex']:
info = np.finfo(ftype)
assert_(info.nmant > 1)
assert_(info.minexp < -1)
assert_(info.maxexp > 1)