In my specific case, I've got constant step-width data, but in general:
Is there any difference between saying
x_calculation_step = Yobs_dx_at(Xo);
convolution_step = n;
or
x_calculation_step = Yobs_dx_at(Xo)/n;
convolution_step = 1;
for any number n > 1?