import numpy as np
a = np.arange(8).reshape(2,4)print'The original array:'print a
print'\n'print'After applying the flat function:'# returns element corresponding to index in flattened array print a.flat[5]
Python
它的输出如下:
The original array:[[0123][4567]]After applying the flat function:5