Consider the following array h_0 = (1/16)*np.array([1,4,6,4,1]). What is the easiest way to insert N zeros between each values of h_0 (as part of a function)? So that I get for N=2 for example
>>> array([0.0625, 0. , 0. , 0.25 , 0. , 0. , 0.375 , 0. ,
0. , 0.25 , 0. , 0. , 0.0625])