diff --git a/ex-6/rl.c b/ex-6/rl.c index 72cdb56..6e3427a 100644 --- a/ex-6/rl.c +++ b/ex-6/rl.c @@ -3,7 +3,7 @@ #include -/* `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 * 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 * 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);