Next: , Previous: , Up: Running Statistics   [Index]


22.3 Current Statistics

Function: double gsl_rstat_min (gsl_rstat_workspace * w)

This function returns the minimum value added to the accumulator.

Function: double gsl_rstat_max (gsl_rstat_workspace * w)

This function returns the maximum value added to the accumulator.

Function: double gsl_rstat_mean (gsl_rstat_workspace * w)

This function returns the mean of all data added to the accumulator, defined as

Function: double gsl_rstat_variance (gsl_rstat_workspace * w)

This function returns the variance of all data added to the accumulator, defined as

Function: double gsl_rstat_sd (gsl_rstat_workspace * w)

This function returns the standard deviation of all data added to the accumulator, defined as the square root of the variance given above.

Function: double gsl_rstat_skew (gsl_rstat_workspace * w)

This function returns the skewness of all data added to the accumulator, defined as

Function: double gsl_rstat_kurtosis (gsl_rstat_workspace * w)

This function returns the kurtosis of all data added to the accumulator, defined as

Function: double gsl_rstat_median (gsl_rstat_workspace * w)

This function returns an estimate of the median of the data added to the accumulator.