Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
setphase!(::Union{FIRInterpolator, FIRRational}, ϕ)
for patholo…
…gical cases For odd number of phases `Nφ` and even length of the filter kernel, the old code would yield `qidx` above `Nφ`, namely equal tp `Nφ+1`, which would result in a `BoundsError` during `resample`. Rewrite the code to reduce `qidx` to `1` in this case and increase `inputDeficit` by one instead. All other constellations should be unaffected.
- Loading branch information