Calculate the standard deviation of a strided array ignoring NaN values and using a one-pass textbook algorithm.
Calculate the arithmetic mean of a double-precision floating-point strided array using a one-pass trial mean algorithm.
Calculate the minimum value of a sorted double-precision floating-point strided array.
Calculate the variance of a single-precision floating-point strided array using Welford's algorithm.
Calculate the standard deviation of a strided array using a one-pass trial mean algorithm.
Calculate the minimum value of a strided array according to a mask, ignoring NaN values.
Calculate the standard deviation of a strided array using Welford's algorithm.
Calculate the maximum value of a strided array according to a mask.
Calculate the variance of a single-precision floating-point strided array using a two-pass algorithm with extended accumulation and returning an extended precision result.
Calculate the median value of a sorted single-precision floating-point strided array.
Calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values, using Welford's algorithm with extended accumulation, and returning an extended precision result.
Calculate the range of a single-precision floating-point strided array according to a mask, ignoring NaN values.
Calculate the range of a double-precision floating-point strided array.
Calculate the arithmetic mean of a strided array using Welford's algorithm.
Calculate the variance of a double-precision floating-point strided array provided a known mean and using Neely's correction algorithm.
Calculate the variance of a double-precision floating-point strided array.
Calculate the variance of a single-precision floating-point strided array ignoring NaN values and using a two-pass algorithm.
Calculate the arithmetic mean of a double-precision floating-point strided array using pairwise summation.
Calculate the mean and variance of a double-precision floating-point strided array using a two-pass algorithm.