|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
#include <gsl/gsl_statistics_short.h>

Go to the source code of this file.
Namespaces | |
| namespace | gsl |
| The gsl package creates an interface to the GNU Scientific Library for C++. | |
| namespace | gsl::stats |
| This namespace provides the gsl_stats functions. | |
Functions | |
| template<typename T > | |
| double | gsl::stats::short_mean (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_mean(). More... | |
| template<typename T > | |
| double | gsl::stats::short_variance (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_variance(). More... | |
| template<typename T > | |
| double | gsl::stats::short_sd (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_sd(). More... | |
| template<typename T > | |
| double | gsl::stats::short_variance_with_fixed_mean (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_variance_with_fixed_mean(). More... | |
| template<typename T > | |
| double | gsl::stats::short_variance_with_fixed_mean (T const &data, double const mean) |
| C++ version of gsl_stats_short_variance_with_fixed_mean(). More... | |
| template<typename T > | |
| double | gsl::stats::short_sd_with_fixed_mean (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_sd_with_fixed_mean(). More... | |
| template<typename T > | |
| double | gsl::stats::short_sd_with_fixed_mean (T const &data, double const mean) |
| C++ version of gsl_stats_short_sd_with_fixed_mean(). More... | |
| template<typename T > | |
| double | gsl::stats::short_tss (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_tss(). More... | |
| template<typename T > | |
| double | gsl::stats::short_tss_m (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_tss_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_tss_m (T const &data, double const mean) |
| C++ version of gsl_stats_short_tss_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_absdev (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_absdev(). More... | |
| template<typename T > | |
| double | gsl::stats::short_skew (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_skew(). More... | |
| template<typename T > | |
| double | gsl::stats::short_kurtosis (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_kurtosis(). More... | |
| template<typename T > | |
| double | gsl::stats::short_lag1_autocorrelation (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_lag1_autocorrelation(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_covariance (T const &data1, size_t const stride1, U const &data2, size_t const stride2) |
| C++ version of gsl_stats_short_covariance(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_covariance (T const &data1, U const &data2) |
| C++ version of gsl_stats_short_covariance(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_correlation (T const &data1, size_t const stride1, U const &data2, size_t const stride2) |
| C++ version of gsl_stats_short_correlation(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_correlation (T const &data1, U const &data2) |
| C++ version of gsl_stats_short_correlation(). More... | |
| template<typename T > | |
| double | gsl::stats::short_variance_m (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_variance_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_variance_m (T const &data, double const mean) |
| C++ version of gsl_stats_short_variance_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_sd_m (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_sd_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_sd_m (T const &data, double const mean) |
| C++ version of gsl_stats_short_sd_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_absdev_m (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_absdev_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_absdev_m (T const &data, double const mean) |
| C++ version of gsl_stats_short_absdev_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_skew_m_sd (T const &data, size_t const stride, double const mean, double const sd) |
| C++ version of gsl_stats_short_skew_m_sd(). More... | |
| template<typename T > | |
| double | gsl::stats::short_skew_m_sd (T const &data, double const mean, double const sd) |
| C++ version of gsl_stats_short_skew_m_sd(). More... | |
| template<typename T > | |
| double | gsl::stats::short_kurtosis_m_sd (T const &data, size_t const stride, double const mean, double const sd) |
| C++ version of gsl_stats_short_kurtosis_m_sd(). More... | |
| template<typename T > | |
| double | gsl::stats::short_kurtosis_m_sd (T const &data, double const mean, double const sd) |
| C++ version of gsl_stats_short_kurtosis_m_sd(). More... | |
| template<typename T > | |
| double | gsl::stats::short_lag1_autocorrelation_m (T const &data, size_t const stride, double const mean) |
| C++ version of gsl_stats_short_lag1_autocorrelation_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_lag1_autocorrelation_m (T const &data, double const mean) |
| C++ version of gsl_stats_short_lag1_autocorrelation_m(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_covariance_m (T const &data1, size_t const stride1, U const &data2, size_t const stride2, double const mean1, double const mean2) |
| C++ version of gsl_stats_short_covariance_m(). More... | |
| template<typename T > | |
| double | gsl::stats::short_covariance_m (T const &data1, T const &data2, double const mean1, double const mean2) |
| C++ version of gsl_stats_short_covariance_m(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_pvariance (T const &data1, size_t const stride1, U const &data2, size_t const stride2) |
| C++ version of gsl_stats_short_pvariance(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_ttest (T const &data1, size_t const stride1, U const &data2, size_t const stride2) |
| C++ version of gsl_stats_short_ttest(). More... | |
| template<typename T > | |
| double | gsl::stats::short_max (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_max(). More... | |
| template<typename T > | |
| double | gsl::stats::short_min (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_min(). More... | |
| template<typename T > | |
| void | gsl::stats::short_minmax (short &min, short &max, T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_minmax(). More... | |
| template<typename T > | |
| size_t | gsl::stats::short_max_index (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_max_index(). More... | |
| template<typename T > | |
| size_t | gsl::stats::short_min_index (T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_min_index(). More... | |
| template<typename T > | |
| void | gsl::stats::short_minmax_index (size_t &min_index, size_t &max_index, T const &data, size_t const stride=1) |
| C++ version of gsl_stats_short_minmax_index(). More... | |
| template<typename T > | |
| double | gsl::stats::short_median_from_sorted_data (T const &sorted_data, size_t const stride=1) |
| C++ version of gsl_stats_short_median_from_sorted_data(). More... | |
| template<typename T > | |
| double | gsl::stats::short_quantile_from_sorted_data (T const &sorted_data, size_t const stride, double const f) |
| C++ version of gsl_stats_short_quantile_from_sorted_data(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_pvariance (T const &data1, U const &data2) |
| C++ version of gsl_stats_short_pvariance(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_ttest (T const &data1, U const &data2) |
| C++ version of gsl_stats_short_ttest(). More... | |
| template<typename T > | |
| double | gsl::stats::short_quantile_from_sorted_data (T const &sorted_data, double const f) |
| C++ version of gsl_stats_short_quantile_from_sorted_data(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_spearman (T const &data1, size_t const stride1, U const &data2, size_t const stride2, double work[]) |
| C++ version of gsl_stats_short_spearman(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_spearman (T const &data1, U const &data2, double work[]) |
| C++ version of gsl_stats_short_spearman(). More... | |
| template<typename T > | |
| double | gsl::stats::short_median (T &data, size_t const stride=1) |
| C++ version of gsl_stats_short_median(). More... | |
| template<typename T > | |
| double | gsl::stats::short_trmean_from_sorted_data (double const trim, T const &sorted_data, size_t const stride=1) |
| C++ version of gsl_stats_short_trmean_from_sorted_data(). More... | |
| template<typename T > | |
| double | gsl::stats::short_gastwirth_from_sorted_data (T const &sorted_data, size_t const stride=1) |
| C++ version of gsl_stats_short_gastwirth_from_sorted_data(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_mad0 (T const &data, size_t const stride, U &work) |
| C++ version of gsl_stats_short_mad0(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_mad (T const &data, size_t const stride, U &work) |
| C++ version of gsl_stats_short_mad(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_Sn0_from_sorted_data (T const &sorted_data, size_t const stride, U &work) |
| C++ version of gsl_stats_short_Sn0_from_sorted_data(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_Sn_from_sorted_data (T const &sorted_data, size_t const stride, U &work) |
| C++ version of gsl_stats_short_Sn_from_sorted_data(). More... | |
| template<typename T , typename U , typename V > | |
| short | gsl::stats::short_Qn0_from_sorted_data (T const &sorted_data, size_t const stride, U &work, V &work_int) |
| C++ version of gsl_stats_short_Qn0_from_sorted_data(). More... | |
| template<typename T , typename U , typename V > | |
| short | gsl::stats::short_Qn_from_sorted_data (T const &sorted_data, size_t const stride, U &work, V &work_int) |
| C++ version of gsl_stats_short_Qn_from_sorted_data(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_mad0 (T const &data, U &work) |
| C++ version of gsl_stats_short_mad0(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_mad (T const &data, U &work) |
| C++ version of gsl_stats_short_mad(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_Sn0_from_sorted_data (T const &sorted_data, U &work) |
| C++ version of gsl_stats_short_Sn0_from_sorted_data(). More... | |
| template<typename T , typename U > | |
| double | gsl::stats::short_Sn_from_sorted_data (T const &sorted_data, U &work) |
| C++ version of gsl_stats_short_Sn_from_sorted_data(). More... | |
| template<typename T , typename U , typename V > | |
| double | gsl::stats::short_Qn0_from_sorted_data (T const &sorted_data, U &work, V &work_int) |
| C++ version of gsl_stats_short_Qn0_from_sorted_data(). More... | |
| template<typename T , typename U , typename V > | |
| double | gsl::stats::short_Qn_from_sorted_data (T const &sorted_data, U &work, V &work_int) |
| C++ version of gsl_stats_short_Qn_from_sorted_data(). More... | |