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
tape('if provided an `N` parameter equal to `1`, the function returns a population standard deviation of `0` provided the first element is not `NaN`',functiontest(t){
276
291
varx;
277
292
varv;
@@ -289,6 +304,23 @@ tape( 'if provided an `N` parameter equal to `1`, the function returns a populat
289
304
t.end();
290
305
});
291
306
307
+
tape('if provided an `N` parameter equal to `1`, the function returns a population standard deviation of `0` provided the first element is not `NaN` (accessors)',functiontest(t){
tape('if provided a `correction` parameter yielding a correction term less than or equal to `0`, the function returns `NaN`',functiontest(t){
310
359
varx;
311
360
varv;
@@ -321,6 +370,21 @@ tape( 'if provided a `correction` parameter yielding a correction term less than
321
370
t.end();
322
371
});
323
372
373
+
tape('if provided a `correction` parameter yielding a correction term less than or equal to `0`, the function returns `NaN` (accessors)',functiontest(t){
tape('the function supports a `stride` parameter',functiontest(t){
325
389
varx;
326
390
varv;
@@ -451,6 +515,28 @@ tape( 'if provided a `stride` parameter equal to `0`, the function returns `0` p
451
515
t.end();
452
516
});
453
517
518
+
tape('if provided a `stride` parameter equal to `0`, the function returns `0` provided the correction term is not less than `0` and the first element is not `NaN` (accessors)',functiontest(t){
tape('if provided an `N` parameter equal to `1`, the function returns a population standard deviation of `0` provided the first element is not `NaN`',functiontest(t){
275
290
varx;
276
291
varv;
@@ -288,6 +303,23 @@ tape( 'if provided an `N` parameter equal to `1`, the function returns a populat
288
303
t.end();
289
304
});
290
305
306
+
tape('if provided an `N` parameter equal to `1`, the function returns a population standard deviation of `0` provided the first element is not `NaN` (accessors)',functiontest(t){
tape('if provided a `correction` parameter yielding a correction term less than or equal to `0`, the function returns `NaN`',functiontest(t){
309
358
varx;
310
359
varv;
@@ -320,6 +369,21 @@ tape( 'if provided a `correction` parameter yielding a correction term less than
320
369
t.end();
321
370
});
322
371
372
+
tape('if provided a `correction` parameter yielding a correction term less than or equal to `0`, the function returns `NaN` (accessors)',functiontest(t){
tape('the function supports a `stride` parameter',functiontest(t){
324
388
varx;
325
389
varv;
@@ -450,6 +514,28 @@ tape( 'if provided a `stride` parameter equal to `0`, the function returns `0` p
450
514
t.end();
451
515
});
452
516
517
+
tape('if provided a `stride` parameter equal to `0`, the function returns `0` provided the correction term is not less than `0` and the first element is not `NaN` (accessors)',functiontest(t){
0 commit comments