문제

Is it possible to get the size of a MemoryView in cython? Ideally, I'm looking for something like arr.shape in numpy.

도움이 되었습니까?

해결책

From http://docs.python.org/3.3/library/stdtypes.html#memoryview

len(view) is equal to the length of tolist. If view.ndim = 0, the length is 1. If view.ndim = 1, the length is equal to the number of elements in the view. For higher dimensions, the length is equal to the length of the nested list representation of the view. The itemsize attribute will give you the number of bytes in a single element.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top