So in numpy arrays there is the built in function for getting the diagonal indices, but I can\'t seem to figure out how to get the diagonal starting from the top right rathe
Here are two ideas:
step = len(array) - 1 # This will make a copy array.flat[step:-step:step] # This will make a veiw array.ravel()[step:-step:step]