Back to Adaptive Vision Library website

You are here: Start » Function Reference » Statistics

Statistics

Select a function from the list below.

IconNameDescription
AverageComputes the average of an array of real numbers. The array must be not empty.
LinearRegressionComputes linear regression of given point set.
MedianComputes the median of an array of real numbers. The array must be not empty.
NthValueComputes n-th smallest value in an array (0-indexed). The array must be not empty.
PearsonCorrelationComputes Pearson product-moment correlation coefficient. The array must be not empty.
QuantileComputes the specified quantile of an array of real numbers. The array must be not empty.
StandardDeviationComputes the standard deviation of an array of real numbers. The array must be not empty.
Statistics_OfArrayComputes basic statistical information out of an array of real numbers. The array must be not empty.
Statistics_OfLoopComputes basic statistical information out of real numbers appearing in consecutive iterations.
VarianceComputes the variance of an array of real numbers. The array must be not empty.

Select Filter Equivalent below.

IconNameDescription
AccessLinearFunctionReturns coefficients of a linear function.
LinearRegression_LTEComputes linear regression of given point set using Least Trimmed Error algorithm.
LinearRegression_MComputes linear regression of given point set using selected M-estimator for outlier suppression.
LinearRegression_RANSACComputes linear regression of given point set using RANSAC.
LinearRegression_TheilSenComputes linear regression of given point set using TheilSen algorithm.
MakeLinearFunctionCreates a linear function with given coefficients.