11 lines
237 B
C
11 lines
237 B
C
#include <gsl/gsl_histogram.h>
|
|
|
|
/* `rl_deconvolve(data, noise, rounds)`
|
|
* tries to deconvolve `noise` from
|
|
* `data` in `rounds` rounds.
|
|
*/
|
|
gsl_histogram* rl_deconvolve(
|
|
gsl_histogram *data,
|
|
gsl_histogram *noise,
|
|
size_t rounds);
|