2.5.10.1.1 BasicStats


Name

BasicStats

Description

Declaration

typedef struct tagBasicStats
{
	double	min;
	double	max;
	double	mean;
	double	sd;
	double	total;
	double	ssdm;
	int		N;
	int		Missing;
	int		iMax;
	int		iMin;
} BasicStats;

Members

min
max
mean
sd
total
the cumulative sum of all the values
ssdm
sum of squares of diff from mean
N
number of good values in the dataset
Missing
number of missing values in the dataset
iMax
index (0 offset) of the max value
iMin
index of the min value

Remark

Examples

Header to Include

origin.h

See Also

Reference