analistica/ex-6/rl.h

11 lines
237 B
C
Raw Permalink Normal View History

2020-03-06 02:24:32 +01:00
#include <gsl/gsl_histogram.h>
/* `rl_deconvolve(data, noise, rounds)`
* tries to deconvolve `noise` from
* `data` in `rounds` rounds.
*/
2020-03-06 02:24:32 +01:00
gsl_histogram* rl_deconvolve(
gsl_histogram *data,
gsl_histogram *noise,
size_t rounds);