Gr_diff_phasor_cc, gr_threshold_ff

The file gr_diff_phasor_cc.h contains a line: " * \brief Please fix my
documentation!"
What it’s doing is: out[i] = in[i] * conj(in[i-1]);

The same goes for gr_threshold_ff.h, which is doing:
if (in[i] > d_hi) out[i] = 1.0;
else if (in[i] < d_lo) out[i] = 0.0;
else out[i] = d_last_state;

Can someone (Jonathan?) please fix that? It shouldn’t take more than 2
minutes…

Dimitris S.
“If you think you’re too small to make a difference, try sleeping with
a mosquito!” - Amnesty International

On Thu, Feb 5, 2009 at 7:00 AM, Dimitris S. [email protected]
wrote:

Can someone (Jonathan?) please fix that? It shouldn’t take more than 2
minutes…

This is a perfect opportunity then for your to spend two minutes
fixing it and post a patch to the list…

Johnathan