ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
rstat.hpp File Reference
#include <cmath>
#include <gsl/gsl_rstat.h>
#include "vector.hpp"
Include dependency graph for rstat.hpp:

Go to the source code of this file.

Classes

class  gsl::rstat::workspace
 Workspace for running statistics. More...
 
class  gsl::rstat::quantile_workspace
 Workspace for quantile running statistics. More...
 

Namespaces

namespace  gsl
 The gsl package creates an interface to the GNU Scientific Library for C++.
 
namespace  gsl::rstat
 This namespace handles the GSL running statistics.
 
namespace  gsl::rstat::quantile
 Namespace for quantile functions.
 

Functions

size_t gsl::rstat::n (workspace const &w)
 C++ version of gsl_rstat_n(). More...
 
int gsl::rstat::add (double const x, workspace &w)
 C++ version of gsl_rstat_add(). More...
 
double gsl::rstat::min (workspace const &w)
 C++ version of gsl_rstat_min(). More...
 
double gsl::rstat::max (workspace const &w)
 C++ version of gsl_rstat_max(). More...
 
double gsl::rstat::mean (workspace const &w)
 C++ version of gsl_rstat_mean(). More...
 
double gsl::rstat::variance (workspace const &w)
 C++ version of gsl_rstat_variance(). More...
 
double gsl::rstat::sd (workspace const &w)
 C++ version of gsl_rstat_sd(). More...
 
double gsl::rstat::rms (workspace const &w)
 C++ version of gsl_rstat_rms(). More...
 
double gsl::rstat::sd_mean (workspace const &w)
 C++ version of gsl_rstat_sd_mean(). More...
 
double gsl::rstat::median (workspace &w)
 C++ version of gsl_rstat_median(). More...
 
double gsl::rstat::skew (workspace const &w)
 C++ version of gsl_rstat_skew(). More...
 
double gsl::rstat::kurtosis (workspace const &w)
 C++ version of gsl_rstat_kurtosis(). More...
 
int gsl::rstat::reset (workspace &w)
 C++ version of gsl_rstat_reset(). More...
 
int gsl::rstat::quantile::reset (quantile_workspace &w)
 C++ version of gsl_rstat_quantile_reset(). More...
 
int gsl::rstat::quantile::add (double const x, quantile_workspace &w)
 C++ version of gsl_rstat_quantile_add(). More...
 
double gsl::rstat::quantile::get (quantile_workspace &w)
 C++ version of gsl_rstat_quantile_get(). More...