ex-6: Language improvement in rl.c

This commit is contained in:
Giù Marcer 2020-03-27 23:45:14 +01:00 committed by rnhmjoj
parent 97ad5ab195
commit 630602b9af

View File

@ -3,7 +3,7 @@
#include <math.h> #include <math.h>
/* `gsl_vector_convolv(a, b, res)` computes the linear /* `gsl_vector_convolve(a, b, res)` computes the linear
* convolution of two vectors. The resulting vector * convolution of two vectors. The resulting vector
* has size `a->n + b->n - 1` and is stored in `res`. * has size `a->n + b->n - 1` and is stored in `res`.
*/ */
@ -76,7 +76,7 @@ gsl_histogram* rl_deconvolve(
/* Create a histogram with the same edges /* Create a histogram with the same edges
* as `data`, but with the original size, * as `data`, but with the original size,
* to return the cleaned result * in which to return the cleaned result.
*/ */
gsl_histogram *hist = gsl_histogram_calloc(orig_size); gsl_histogram *hist = gsl_histogram_calloc(orig_size);