You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I wrote a simple test and the output size is different
` input_arr = np.random.rand(10,1)
output_arr = filter1D(input_arr.reshape(-1), mu=5, poly=3, order=0)
`
resulting in output_arr of shape 10, and output_arr2 shape of 5. it has to do with conv(...,'full'). if "same" is used the dimension are correct but still the values are different
The text was updated successfully, but these errors were encountered:
Hi,
I wrote a simple test and the output size is different
` input_arr = np.random.rand(10,1)
output_arr = filter1D(input_arr.reshape(-1), mu=5, poly=3, order=0)
`
resulting in output_arr of shape 10, and output_arr2 shape of 5. it has to do with conv(...,'full'). if "same" is used the dimension are correct but still the values are different
The text was updated successfully, but these errors were encountered: