Lines 365 and 372 read `response_freqs = (np.squeeze(data.freqs[nchan_kernel/2:-nchan_kernel/2+1]) + data_delfreq/2.0)/1.e6` However, there is no guarantee that nchan_kernel is even, so the code will throw an error when nchan_kernel is odd.
Lines 365 and 372 read
response_freqs = (np.squeeze(data.freqs[nchan_kernel/2:-nchan_kernel/2+1]) + data_delfreq/2.0)/1.e6However, there is no guarantee that nchan_kernel is even, so the code will throw an error when nchan_kernel is odd.