I have a numpy array comtaining numbers (a, b, ...), like this: array([a, b, c, d, e, f])
What is the fastest way to create another array that has the index of the element before each element of the original array? The result should look like this: array([0, a, 1, b, 2, c, 3, d, 4, e, 5, f]) -- Thanks, Thomas _______________________________________________ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy-discussion