Bug #165
iir_filter documentation wrong
| Status: | Closed | Start date: | ||
|---|---|---|---|---|
| Priority: | Low | Due date: | ||
| Assignee: | Johnathan Corgan | % Done: | 0% |
|
| Category: | gnuradio-core | |||
| Target version: | release-3.1.2 | |||
| Resolution: | wontfix |
Description
The documentation of gr_single_pole_avg_filter_ff is not coherent to its code.
The equation presented in the doc does not reflect the current code:
y[n] - (1-alpha) y[n-1] = alpha x[n]
output = d_alpha * input - d_one_minus_alpha * d_prev_input;
And in gr_single_pole_rec.h:
computes y(i) = alpha * x(i) - (1-alpha) * y(i-1)
output = d_alpha * input + d_one_minus_alpha * d_prev_output;
History
Updated by Johnathan Corgan almost 6 years ago
- Status changed from New to Assigned
Updated by Johnathan Corgan about 5 years ago
- Status changed from Assigned to Closed
- Resolution set to wontfix
This code was removed from the trunk in r7834.