I would like to use GSL (Gnu Scientific Lib) to calculate the standard deviation of an array. http://www.gnu.org/software/gsl/manual/html_node/Mean-and-standard-deviation-and-variance.html
In the manual, the function prototype is gsl_stats_sd (const double data[], size_t stride, size_t n)
However, I don't quite understand what the "stride" is here. Would somebody know what it is?