Calculate the standard deviation of a strided array using Welford's algorithm.
-
Updated
Dec 1, 2024 - JavaScript
Calculate the standard deviation of a strided array using Welford's algorithm.
Calculate the sum of single-precision floating-point strided array elements, ignoring NaN values, using ordinary recursive summation with extended accumulation, and returning an extended precision result.
Calculate the range of a strided array according to a mask, ignoring NaN values.
Calculate the variance of a strided array using a one-pass textbook algorithm.
Calculate the maximum value of a strided array.
Calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm with extended accumulation and returning an extended precision result.
Calculate the sum of double-precision floating-point strided array elements, ignoring NaN values and using an improved Kahan–Babuška algorithm.
Calculate the cumulative maximum of double-precision floating-point strided array elements.
Calculate the variance of a single-precision floating-point strided array.
Calculate the minimum absolute value of a double-precision floating-point strided array, ignoring NaN values.
Calculate the arithmetic mean of a strided array using pairwise summation.
Calculate the range of a strided array according to a mask.
Calculate the range of a strided array, ignoring NaN values.
Calculate the cumulative sum of single-precision floating-point strided array elements using pairwise summation.
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 arithmetic mean of a single-precision floating-point strided array, ignoring NaN values, using ordinary recursive summation with extended accumulation, and returning an extended precision result.
Calculate the standard deviation of a single-precision floating-point strided array.
Calculate the maximum value of a strided array, ignoring NaN values.
Calculate the cumulative maximum of a strided array.
Calculate the minimum value of a strided array via a callback function, ignoring NaN values.
Add a description, image, and links to the strided-array topic page so that developers can more easily learn about it.
To associate your repository with the strided-array topic, visit your repo's landing page and select "manage topics."