Is there a python equivalent to zero padding a function? For example in MATLAB:
x1 = 0.5*np.cos(2*np.pi*f1*t)
x1 = [x1, zeros(1,1000)]
Which will pad x1 with 1000 zeros.
Is there a python equivalent to zero padding a function? For example in MATLAB:
x1 = 0.5*np.cos(2*np.pi*f1*t)
x1 = [x1, zeros(1,1000)]
Which will pad x1 with 1000 zeros.