当前位置: 首页>>代码示例>>Python>>正文


Python core.atleast_2d函数代码示例

本文整理汇总了Python中numpy.core.atleast_2d函数的典型用法代码示例。如果您正苦于以下问题:Python atleast_2d函数的具体用法?Python atleast_2d怎么用?Python atleast_2d使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了atleast_2d函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_3D_array

 def test_3D_array(self):
     a = array([[1, 2], [1, 2]])
     b = array([[2, 3], [2, 3]])
     a = array([a, a])
     b = array([b, b])
     res = [atleast_2d(a), atleast_2d(b)]
     desired = [a, b]
     assert_array_equal(res, desired)
开发者ID:8ballbb,项目名称:ProjectRothar,代码行数:8,代码来源:test_shape_base.py

示例2: test_r2array

 def test_r2array(self):
     """ Test to make sure equivalent Travis O's r2array function
     """
     assert_(atleast_2d(3).shape == (1,1))
     assert_(atleast_2d([3j,1]).shape == (1,2))
     assert_(atleast_2d([[[3,1],[4,5]],[[3,5],[1,2]]]).shape == (2,2,2))
开发者ID:123jefferson,项目名称:MiniBloq-Sparki,代码行数:6,代码来源:test_shape_base.py

示例3: test_1D_array

 def test_1D_array(self):
     a = array([1, 2])
     b = array([2, 3])
     res = [atleast_2d(a), atleast_2d(b)]
     desired = [array([[1, 2]]), array([[2, 3]])]
     assert_array_equal(res, desired)
开发者ID:8ballbb,项目名称:ProjectRothar,代码行数:6,代码来源:test_shape_base.py

示例4: test_0D_array

 def test_0D_array(self):
     a = array(1)
     b = array(2)
     res = [atleast_2d(a), atleast_2d(b)]
     desired = [array([[1]]), array([[2]])]
     assert_array_equal(res, desired)
开发者ID:8ballbb,项目名称:ProjectRothar,代码行数:6,代码来源:test_shape_base.py


注:本文中的numpy.core.atleast_2d函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。