| Top |
int go_range_average (double const *xs,int n,double *res);
The average of the input values will be stored in res
.
int go_range_averagel (long double const *xs,int n,long double *res);
The average of the input values will be stored in res
.
int go_range_averageD (_Decimal64 const *xs,int n,_Decimal64 *res);
The average of the input values will be stored in res
.
int go_range_devsq (double const *xs,int n,double *res);
The sum of the input values deviation from the mean will be stored
in res
.
int go_range_devsql (long double const *xs,int n,long double *res);
The sum of the input values deviation from the mean will be stored
in res
.
int go_range_devsqD (_Decimal64 const *xs,int n,_Decimal64 *res);
The sum of the input values deviation from the mean will be stored
in res
.
int go_range_fractile_inter (double const *xs,int n,double *res,double f);
This function computes the interpolated fractile given by f
and
stores it in res
.
int go_range_fractile_interl (long double const *xs,int n,long double *res,long double f);
This function computes the interpolated fractile given by f
and
stores it in res
.
int go_range_fractile_interD (_Decimal64 const *xs,int n,_Decimal64 *res,_Decimal64 f);
This function computes the interpolated fractile given by f
and
stores it in res
.
int go_range_fractile_inter_nonconst (double *xs,int n,double *res,double f);
This function computes the interpolated fractile given by f
and
stores it in res
.
Unlike go_range_fractile_inter, this function may reorder the
elements of xs
.
int go_range_fractile_inter_nonconstl (long double *xs,int n,long double *res,long double f);
This function computes the interpolated fractile given by f
and
stores it in res
.
Unlike go_range_fractile_inter, this function may reorder the
elements of xs
.
int go_range_fractile_inter_nonconstD (_Decimal64 *xs,int n,_Decimal64 *res,_Decimal64 f);
This function computes the interpolated fractile given by f
and
stores it in res
.
Unlike go_range_fractile_inter, this function may reorder the
elements of xs
.
int go_range_fractile_inter_sorted (double const *xs,int n,double *res,double f);
This function computes the interpolated fractile given by f
and
stores it in res
.
int go_range_fractile_inter_sortedl (long double const *xs,int n,long double *res,long double f);
This function computes the interpolated fractile given by f
and
stores it in res
.
int go_range_fractile_inter_sortedD (_Decimal64 const *xs,int n,_Decimal64 *res,_Decimal64 f);
This function computes the interpolated fractile given by f
and
stores it in res
.
int go_range_max (double const *xs,int n,double *res);
The maximum of the input values will be stored in res
.
int go_range_maxl (long double const *xs,int n,long double *res);
The maximum of the input values will be stored in res
.
int go_range_maxD (_Decimal64 const *xs,int n,_Decimal64 *res);
The maximum of the input values will be stored in res
.
int go_range_maxabs (double const *xs,int n,double *res);
The maximum of the absolute values of the input values will be stored
in res
.
int go_range_maxabsl (long double const *xs,int n,long double *res);
The maximum of the absolute values of the input values will be stored
in res
.
int go_range_maxabsD (_Decimal64 const *xs,int n,_Decimal64 *res);
The maximum of the absolute values of the input values will be stored
in res
.
int go_range_median_inter (double const *xs,int n,double *res);
This function computes the interpolated median and stores it in res
.
int go_range_median_interl (long double const *xs,int n,long double *res);
This function computes the interpolated median and stores it in res
.
int go_range_median_interD (_Decimal64 const *xs,int n,_Decimal64 *res);
This function computes the interpolated median and stores it in res
.
int go_range_median_inter_nonconst (double *xs,int n,double *res);
This function computes the interpolated median and stores it in res
.
Unlike go_range_median_inter, this function may reorder the
elements of xs
.
int go_range_median_inter_nonconstl (long double *xs,int n,long double *res);
This function computes the interpolated median and stores it in res
.
Unlike go_range_median_inter, this function may reorder the
elements of xs
.
int go_range_median_inter_nonconstD (_Decimal64 *xs,int n,_Decimal64 *res);
This function computes the interpolated median and stores it in res
.
Unlike go_range_median_inter, this function may reorder the
elements of xs
.
int go_range_median_inter_sorted (double const *xs,int n,double *res);
This function computes the interpolated median and stores it in res
.
int go_range_median_inter_sortedl (long double const *xs,int n,long double *res);
This function computes the interpolated median and stores it in res
.
int go_range_median_inter_sortedD (_Decimal64 const *xs,int n,_Decimal64 *res);
This function computes the interpolated median and stores it in res
.
int go_range_min (double const *xs,int n,double *res);
The minimum of the input values will be stored in res
.
int go_range_minl (long double const *xs,int n,long double *res);
The minimum of the input values will be stored in res
.
int go_range_minD (_Decimal64 const *xs,int n,_Decimal64 *res);
The minimum of the input values will be stored in res
.
double * go_range_sort (double const *xs,int n);
This function creates a sorted copy of xs
.
long double * go_range_sortl (long double const *xs,int n);
This function creates a sorted copy of xs
.
_Decimal64 * go_range_sortD (_Decimal64 const *xs,int n);
This function creates a sorted copy of xs
.
[skip]
int go_range_sum (double const *xs,int n,double *res);
The arithmetic sum of the input values will be stored in res
.
int go_range_suml (long double const *xs,int n,long double *res);
The arithmetic sum of the input values will be stored in res
.
int go_range_sumD (_Decimal64 const *xs,int n,_Decimal64 *res);
The arithmetic sum of the input values will be stored in res
.
int go_range_sumsq (double const *xs,int n,double *res);
The arithmetic sum of the squares of the input values will be stored
in res
.
int go_range_sumsql (long double const *xs,int n,long double *res);
The arithmetic sum of the squares of the input values will be stored
in res
.
int go_range_sumsqD (_Decimal64 const *xs,int n,_Decimal64 *res);
The arithmetic sum of the squares of the input values will be stored
in res
.