Calculate the standard deviation of a strided array using Welford's algorithm.
-
Updated
May 19, 2025 - JavaScript
8000
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 arithmetic mean of a double-precision floating-point strided array using pairwise summation.
Calculate the standard deviation of a strided array.
Compute the absolute value of each element retrieved from a strided input array via a callback function and assign each result to an element in a strided output array.
Calculate the sum of double-precision floating-point strided array elements, ignoring NaN values and using an improved Kahan–Babuška algorithm.
Calculate the range of a strided array according to a mask, ignoring NaN values.
Fill a strided array with pseudorandom numbers drawn from an inverse gamma distribution.
Calculate the variance of a single-precision floating-point strided array using a two-pass algorithm.
Calculate the sum of single-precision floating-point strided array elements, ignoring NaN values, using 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 sum of double-precision floating-point strided array elements, ignoring NaN values and using pairwise summation.
Calculate the maximum value of a double-precision floating-point strided array.
Calculate the variance of a double-precision floating-point strided array using a two-pass algorithm.
Calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation with extended accumulation and returning an extended precision result.
Element-wise addition of two strided arrays.
Apply a binary function to each pair of elements retrieved from strided input arrays according to a callback function and assign results to a strided output array.
Calculate the minimum value of a strided array via a callback function, ignoring NaN values.
Calculate the arithmetic mean of a single-precision floating-point strided array using a one-pass trial mean algorithm with pairwise summation.
Add a description, image, and links to the strided topic page so that developers can more easily learn about it.
To associate your repository with the strided topic, visit your repo's landing page and select "manage topics."