I have a Numpy array with shape [1000, 1000, 1000, 3]
, being the last dimension, sized 3, is contains the triplets of 3D spatial vectors components. How can I use nditer
to iterate over each triplet? Like this:
for vec in np.nditer(my_array, op_flags=['writeonly', <???>]):
vec = np.array(something)