You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Computes the standard deviation of an array using a one-pass textbook algorithm.
286
270
*
287
-
* ## Method
288
-
*
289
-
* - This implementation uses a one-pass algorithm, as proposed by Youngs and Cramer (1971).
290
-
*
291
-
* ## References
292
-
*
293
-
* - Youngs, Edward A., and Elliot M. Cramer. 1971. "Some Results Relevant to Choice of Sum and Sum-of-Product Algorithms." _Technometrics_ 13 (3): 657–65. doi:[10.1080/00401706.1971.10488826](https://doi.org/10.1080/00401706.1971.10488826).
294
-
*
295
271
* @param {NumericArray} x - input array
296
272
* @param {number} [correction=1.0] - degrees of freedom adjustment
297
273
* @throws {TypeError} first argument must be an array-like object
0 commit comments