本文整理汇总了Python中numpy.core.umath.ldexp函数的典型用法代码示例。如果您正苦于以下问题:Python ldexp函数的具体用法?Python ldexp怎么用?Python ldexp使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了ldexp函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_ldexp_overflow
def test_ldexp_overflow(self):
# silence warning emitted on overflow
with np.errstate(over="ignore"):
imax = np.iinfo(np.dtype('l')).max
imin = np.iinfo(np.dtype('l')).min
assert_equal(ncu.ldexp(2., imax), np.inf)
assert_equal(ncu.ldexp(2., imin), 0)
开发者ID:Fematich,项目名称:article_browser,代码行数:7,代码来源:test_umath.py
示例2: _check_ldexp
def _check_ldexp(self, tp):
assert_almost_equal(ncu.ldexp(np.array(2., np.float32),
np.array(3, tp)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.float64),
np.array(3, tp)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.longdouble),
np.array(3, tp)), 16.)
开发者ID:Fematich,项目名称:article_browser,代码行数:7,代码来源:test_umath.py
示例3: test_ldexp_overflow
def test_ldexp_overflow(self):
# silence warning emitted on overflow
err = np.seterr(over="ignore")
try:
imax = np.iinfo(np.dtype("l")).max
imin = np.iinfo(np.dtype("l")).min
assert_equal(ncu.ldexp(2.0, imax), np.inf)
assert_equal(ncu.ldexp(2.0, imin), 0)
finally:
np.seterr(**err)
开发者ID:jarrodmillman,项目名称:numpy,代码行数:10,代码来源:test_umath.py
示例4: test_ldexp
def test_ldexp(self):
# The default Python int type should work
assert_almost_equal(ncu.ldexp(2.0, 3), 16.0)
# The following int types should all be accepted
self._check_ldexp(np.int8)
self._check_ldexp(np.int16)
self._check_ldexp(np.int32)
self._check_ldexp("i")
self._check_ldexp("l")
开发者ID:jarrodmillman,项目名称:numpy,代码行数:9,代码来源:test_umath.py
示例5: test_ldexp
def test_ldexp(self):
assert_almost_equal(ncu.ldexp(2., 3), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.float32), np.array(3, np.int16)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.float32), np.array(3, np.int32)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.float64), np.array(3, np.int16)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.float64), np.array(3, np.int32)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.longdouble), np.array(3, np.int16)), 16.)
assert_almost_equal(ncu.ldexp(np.array(2., np.longdouble), np.array(3, np.int32)), 16.)
开发者ID:dagss,项目名称:numpy_svn,代码行数:8,代码来源:test_umath.py
示例6: test_ldexp_overflow
def test_ldexp_overflow(self):
imax = np.iinfo(np.dtype('l')).max
imin = np.iinfo(np.dtype('l')).min
assert_equal(ncu.ldexp(2., imax), np.inf)
assert_equal(ncu.ldexp(2., imin), 0)
开发者ID:eteq,项目名称:numpy,代码行数:5,代码来源:test_umath.py
注:本文中的numpy.core.umath.ldexp函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论