本文整理汇总了Python中numpy.MAXDIMS属性的典型用法代码示例。如果您正苦于以下问题:Python numpy.MAXDIMS属性的具体用法?Python numpy.MAXDIMS怎么用?Python numpy.MAXDIMS使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类numpy
的用法示例。
在下文中一共展示了numpy.MAXDIMS属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getShape
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import MAXDIMS [as 别名]
def getShape(shape, *args):
try:
if shape is () and not args:
return ()
if len(args) > 0:
shape = (shape, ) + args
else:
shape = tuple(shape)
dummy = np.array(shape)
if not issubclass(dummy.dtype.type, np.integer):
raise TypeError
if len(dummy) > np.MAXDIMS:
raise TypeError
except:
raise TypeError("Shape must be a sequence of integers")
return shape
示例2: test_too_big_rank
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import MAXDIMS [as 别名]
def test_too_big_rank(self):
x = self.type(self.dtype, broadcastable=())()
y = x.dimshuffle(('x',) * (numpy.MAXDIMS + 1))
self.assertRaises(ValueError, y.eval, {x: 0})