I have an array like this:
array([[-1.2825],
[-0.9202],
[-0.0809],
[-0.1469],
[-0.3981],
[-0.1422],
[-0.0132]])
and I would like the first element to be the last, second element to be the second from the end etc. How can I do this?
array([[-0.0132],
[-0.1422],
[-0.3981],
[-0.1469],
[-0.0809],
[-0.9202],
[-1.2825]])