I have an numpy array of complex numbers. So I want to insert zero at start of the array, and shift the rest of the array one place forward.
example:
An alternative is "horizontal stack" (also creates a new array):
np.hstack((0,a))