本文整理汇总了Python中numpy.core.umath_tests.innerwt函数的典型用法代码示例。如果您正苦于以下问题:Python innerwt函数的具体用法?Python innerwt怎么用?Python innerwt使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了innerwt函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_innerwt
def test_innerwt(self):
a = np.arange(6).reshape((2, 3))
b = np.arange(10, 16).reshape((2, 3))
w = np.arange(20, 26).reshape((2, 3))
assert_array_equal(umt.innerwt(a, b, w), np.sum(a*b*w, axis=-1))
a = np.arange(100, 124).reshape((2, 3, 4))
b = np.arange(200, 224).reshape((2, 3, 4))
w = np.arange(300, 324).reshape((2, 3, 4))
assert_array_equal(umt.innerwt(a, b, w), np.sum(a*b*w, axis=-1))
开发者ID:BoomShanker,项目名称:numpy,代码行数:9,代码来源:test_ufunc.py
示例2: check_innerwt_t
def check_innerwt_t( self, tp ):
a = np.arange(6, dtype=tp).reshape((2,3))
b = np.arange(10,16, dtype=tp).reshape((2,3))
w = np.arange(20,26, dtype=tp).reshape((2,3))
assert_array_equal(umt.innerwt(a,b,w), np.sum(a*b*w,axis=-1))
a = np.arange(100,124, dtype=tp).reshape((2,3,4))
b = np.arange(200,224, dtype=tp).reshape((2,3,4))
w = np.arange(300,324, dtype=tp).reshape((2,3,4))
assert_array_equal(umt.innerwt(a,b,w), np.sum(a*b*w,axis=-1))
开发者ID:258073127,项目名称:MissionPlanner,代码行数:9,代码来源:test_ufunc.py
示例3: test_innerwt_empty
def test_innerwt_empty(self):
"""Test generalized ufunc with zero-sized operands"""
a = np.array([], dtype='f8')
b = np.array([], dtype='f8')
w = np.array([], dtype='f8')
assert_array_equal(umt.innerwt(a, b, w), np.sum(a*b*w, axis=-1))
开发者ID:BoomShanker,项目名称:numpy,代码行数:6,代码来源:test_ufunc.py
注:本文中的numpy.core.umath_tests.innerwt函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论