Skip to content

Commit 1148a3f

Browse files
committed
Auto-generated commit
1 parent eda51c5 commit 1148a3f

File tree

11 files changed

+87
-86
lines changed

11 files changed

+87
-86
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-01-05)
7+
## Unreleased (2025-01-07)
88

99
<section class="packages">
1010

@@ -190,6 +190,7 @@ A total of 4 people contributed to this release. Thank you to the following cont
190190

191191
<details>
192192

193+
- [`90985e9`](https://github.com/stdlib-js/stdlib/commit/90985e94abe1ce46f70d0c36c1b843d587088516) - **docs:** update REPL namespace documentation [(#4624)](https://github.com/stdlib-js/stdlib/pull/4624) _(by stdlib-bot)_
193194
- [`c4d642d`](https://github.com/stdlib-js/stdlib/commit/c4d642dce7027ddb907e7ab20013acbe816a448a) - **docs:** update REPL namespace documentation [(#4546)](https://github.com/stdlib-js/stdlib/pull/4546) _(by stdlib-bot)_
194195
- [`e347491`](https://github.com/stdlib-js/stdlib/commit/e3474917c7fb1dc4d96ce5a22edd39201647deda) - **docs:** update REPL namespace documentation [(#4519)](https://github.com/stdlib-js/stdlib/pull/4519) _(by stdlib-bot)_
195196
- [`02231a7`](https://github.com/stdlib-js/stdlib/commit/02231a75a23db0b74782be906dff51688df7e760) - **docs:** update REPL namespace documentation [(#4488)](https://github.com/stdlib-js/stdlib/pull/4488) _(by stdlib-bot, Philipp Burckhardt)_

code-blocks/data/data.csv

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

code-blocks/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

help/data/data.csv

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

help/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

info/data/data.csv

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1992,22 +1992,22 @@ base.strided.dtypeResolveStr,"\nbase.strided.dtypeResolveStr( dtype:any )\n R
19921992
base.strided.dtypeStr2Enum,"\nbase.strided.dtypeStr2Enum( dtype:string )\n Returns the enumeration constant associated with a strided array data type\n string.\n"
19931993
base.strided.dvariance,"\nbase.strided.dvariance( N:integer, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array.\n"
19941994
base.strided.dvariance.ndarray,"\nbase.strided.dvariance.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n using alternative indexing semantics.\n"
1995-
base.strided.dvariancech,"\nbase.strided.dvariancech( N:integer, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass trial mean algorithm.\n"
1996-
base.strided.dvariancech.ndarray,"\nbase.strided.dvariancech.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass trial mean algorithm and alternative indexing semantics.\n"
1995+
base.strided.dvariancech,"\nbase.strided.dvariancech( N:integer, correction:number, x:Float64Array, \n strideX:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass trial mean algorithm.\n"
1996+
base.strided.dvariancech.ndarray,"\nbase.strided.dvariancech.ndarray( N:integer, correction:number, x:Float64Array, \n strideX:integer, offsetX:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass trial mean algorithm and alternative indexing semantics.\n"
19971997
base.strided.dvariancepn,"\nbase.strided.dvariancepn( N:integer, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array\n using a two-pass algorithm.\n"
19981998
base.strided.dvariancepn.ndarray,"\nbase.strided.dvariancepn.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n using a two-pass algorithm and alternative indexing semantics.\n"
1999-
base.strided.dvariancetk,"\nbase.strided.dvariancetk( N:integer, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass textbook algorithm.\n"
2000-
base.strided.dvariancetk.ndarray,"\nbase.strided.dvariancetk.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass textbook algorithm and alternative indexing semantics.\n"
2001-
base.strided.dvariancewd,"\nbase.strided.dvariancewd( N:integer, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array\n using Welford's algorithm.\n"
2002-
base.strided.dvariancewd.ndarray,"\nbase.strided.dvariancewd.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n using Welford's algorithm and alternative indexing semantics.\n"
2003-
base.strided.dvarianceyc,"\nbase.strided.dvarianceyc( N:integer, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass algorithm proposed by Youngs and Cramer.\n"
2004-
base.strided.dvarianceyc.ndarray,"\nbase.strided.dvarianceyc.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass algorithm proposed by Youngs and Cramer and alternative\n indexing semantics.\n"
1999+
base.strided.dvariancetk,"\nbase.strided.dvariancetk( N:integer, correction:number, x:Float64Array, \n strideX:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass textbook algorithm.\n"
2000+
base.strided.dvariancetk.ndarray,"\nbase.strided.dvariancetk.ndarray( N:integer, correction:number, x:Float64Array, \n strideX:integer, offsetX:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass textbook algorithm and alternative indexing semantics.\n"
2001+
base.strided.dvariancewd,"\nbase.strided.dvariancewd( N:integer, correction:number, x:Float64Array, \n strideX:integer )\n Computes the variance of a double-precision floating-point strided array\n using Welford's algorithm.\n"
2002+
base.strided.dvariancewd.ndarray,"\nbase.strided.dvariancewd.ndarray( N:integer, correction:number, x:Float64Array, \n strideX:integer, offsetX:integer )\n Computes the variance of a double-precision floating-point strided array\n using Welford's algorithm and alternative indexing semantics.\n"
2003+
base.strided.dvarianceyc,"\nbase.strided.dvarianceyc( N:integer, correction:number, x:Float64Array, \n strideX:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass algorithm proposed by Youngs and Cramer.\n"
2004+
base.strided.dvarianceyc.ndarray,"\nbase.strided.dvarianceyc.ndarray( N:integer, correction:number, x:Float64Array, \n strideX:integer, offsetX:integer )\n Computes the variance of a double-precision floating-point strided array\n using a one-pass algorithm proposed by Youngs and Cramer and alternative\n indexing semantics.\n"
20052005
base.strided.dvarm,"\nbase.strided.dvarm( N:integer, mean:number, correction:number, x:Float64Array, \n stride:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean.\n"
20062006
base.strided.dvarm.ndarray,"\nbase.strided.dvarm.ndarray( N:integer, mean:number, correction:number, \n x:Float64Array, stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using alternative indexing semantics.\n"
20072007
base.strided.dvarmpn,"\nbase.strided.dvarmpn( N:integer, mean:number, correction:number, \n x:Float64Array, stride:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using Neely's correction algorithm.\n"
20082008
base.strided.dvarmpn.ndarray,"\nbase.strided.dvarmpn.ndarray( N:integer, mean:number, correction:number, \n x:Float64Array, stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using Neely's correction algorithm and alternative\n indexing semantics.\n"
2009-
base.strided.dvarmtk,"\nbase.strided.dvarmtk( N:integer, mean:number, correction:number, \n x:Float64Array, stride:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using a one-pass textbook algorithm.\n"
2010-
base.strided.dvarmtk.ndarray,"\nbase.strided.dvarmtk.ndarray( N:integer, mean:number, correction:number, \n x:Float64Array, stride:integer, offset:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using a one-pass textbook algorithm and\n alternative indexing semantics.\n"
2009+
base.strided.dvarmtk,"\nbase.strided.dvarmtk( N:integer, mean:number, correction:number, \n x:Float64Array, strideX:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using a one-pass textbook algorithm.\n"
2010+
base.strided.dvarmtk.ndarray,"\nbase.strided.dvarmtk.ndarray( N:integer, mean:number, correction:number, \n x:Float64Array, strideX:integer, offsetX:integer )\n Computes the variance of a double-precision floating-point strided array\n provided a known mean and using a one-pass textbook algorithm and\n alternative indexing semantics.\n"
20112011
base.strided.gapx,"\nbase.strided.gapx( N:integer, alpha:number, x:Array|TypedArray, stride:integer )\n Adds a constant to each element in a strided array.\n"
20122012
base.strided.gapx.ndarray,"\nbase.strided.gapx.ndarray( N:integer, alpha:number, x:Array|TypedArray, \n stride:integer, offset:integer )\n Adds a constant to each element in a strided array using alternative\n indexing semantics.\n"
20132013
base.strided.gapxsum,"\nbase.strided.gapxsum( N:integer, alpha:number, x:Array|TypedArray, \n stride:integer )\n Adds a constant to each strided array element and computes the sum.\n"
@@ -2309,8 +2309,8 @@ base.strided.smeanpn,"\nbase.strided.smeanpn( N:integer, x:Float32Array, stride:
23092309
base.strided.smeanpn.ndarray,"\nbase.strided.smeanpn.ndarray( N:integer, x:Float32Array, stride:integer, \n offset:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using a two-pass error correction algorithm and alternative indexing\n semantics.\n"
23102310
base.strided.smeanpw,"\nbase.strided.smeanpw( N:integer, x:Float32Array, stride:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using pairwise summation.\n"
23112311
base.strided.smeanpw.ndarray,"\nbase.strided.smeanpw.ndarray( N:integer, x:Float32Array, stride:integer, \n offset:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using pairwise summation and alternative indexing semantics.\n"
2312-
base.strided.smeanwd,"\nbase.strided.smeanwd( N:integer, x:Float32Array, stride:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using Welford's algorithm.\n"
2313-
base.strided.smeanwd.ndarray,"\nbase.strided.smeanwd.ndarray( N:integer, x:Float32Array, stride:integer, \n offset:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using Welford's algorithm and alternative indexing semantics.\n"
2312+
base.strided.smeanwd,"\nbase.strided.smeanwd( N:integer, x:Float32Array, strideX:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using Welford's algorithm.\n"
2313+
base.strided.smeanwd.ndarray,"\nbase.strided.smeanwd.ndarray( N:integer, x:Float32Array, strideX:integer, \n offsetX:integer )\n Computes the arithmetic mean of a single-precision floating-point strided\n array using Welford's algorithm and alternative indexing semantics.\n"
23142314
base.strided.smediansorted,"\nbase.strided.smediansorted( N:integer, x:Float32Array, strideX:integer )\n Computes the median value of a sorted single-precision floating-point\n strided array.\n"
23152315
base.strided.smediansorted.ndarray,"\nbase.strided.smediansorted.ndarray( N:integer, x:Float32Array, strideX:integer, \n offsetX:integer )\n Computes the median value of a sorted single-precision floating-point\n strided array using alternative indexing semantics.\n"
23162316
base.strided.smidrange,"\nbase.strided.smidrange( N:integer, x:Float32Array, strideX:integer )\n Computes the mid-range of a single-precision floating-point strided array.\n"
@@ -2477,12 +2477,12 @@ base.strided.strunc,"\nbase.strided.strunc( N:integer, x:Float32Array, strideX:i
24772477
base.strided.strunc.ndarray,"\nbase.strided.strunc.ndarray( N:integer, x:Float32Array, strideX:integer, \n offsetX:integer, y:Float32Array, strideY:integer, offsetY:integer )\n Rounds each element in a single-precision floating-point strided array `x`\n toward zero and assigns the results to elements in a single-precision\n floating-point strided array `y` using alternative indexing semantics.\n"
24782478
base.strided.svariance,"\nbase.strided.svariance( N:integer, correction:number, x:Float32Array, \n stride:integer )\n Computes the variance of a single-precision floating-point strided array.\n"
24792479
base.strided.svariance.ndarray,"\nbase.strided.svariance.ndarray( N:integer, correction:number, x:Float32Array, \n stride:integer, offset:integer )\n Computes the variance of a single-precision floating-point strided array\n using alternative indexing semantics.\n"
2480-
base.strided.svariancech,"\nbase.strided.svariancech( N:integer, correction:number, x:Float32Array, \n stride:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass trial mean algorithm.\n"
2481-
base.strided.svariancech.ndarray,"\nbase.strided.svariancech.ndarray( N:integer, correction:number, x:Float32Array, \n stride:integer, offset:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass trial mean algorithm and alternative indexing semantics.\n"
2480+
base.strided.svariancech,"\nbase.strided.svariancech( N:integer, correction:number, x:Float32Array, \n strideX:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass trial mean algorithm.\n"
2481+
base.strided.svariancech.ndarray,"\nbase.strided.svariancech.ndarray( N:integer, correction:number, x:Float32Array, \n strideX:integer, offsetX:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass trial mean algorithm and alternative indexing semantics.\n"
24822482
base.strided.svariancepn,"\nbase.strided.svariancepn( N:integer, correction:number, x:Float32Array, \n stride:integer )\n Computes the variance of a single-precision floating-point strided array\n using a two-pass algorithm.\n"
24832483
base.strided.svariancepn.ndarray,"\nbase.strided.svariancepn.ndarray( N:integer, correction:number, x:Float32Array, \n stride:integer, offset:integer )\n Computes the variance of a single-precision floating-point strided array\n using a two-pass algorithm and alternative indexing semantics.\n"
2484-
base.strided.svariancetk,"\nbase.strided.svariancetk( N:integer, correction:number, x:Float32Array, \n stride:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass textbook algorithm.\n"
2485-
base.strided.svariancetk.ndarray,"\nbase.strided.svariancetk.ndarray( N:integer, correction:number, x:Float32Array, \n stride:integer, offset:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass textbook algorithm and alternative indexing semantics.\n"
2484+
base.strided.svariancetk,"\nbase.strided.svariancetk( N:integer, correction:number, x:Float32Array, \n strideX:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass textbook algorithm.\n"
2485+
base.strided.svariancetk.ndarray,"\nbase.strided.svariancetk.ndarray( N:integer, correction:number, x:Float32Array, \n strideX:integer, offsetX:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass textbook algorithm and alternative indexing semantics.\n"
24862486
base.strided.svariancewd,"\nbase.strided.svariancewd( N:integer, correction:number, x:Float32Array, \n stride:integer )\n Computes the variance of a single-precision floating-point strided array\n using Welford's algorithm.\n"
24872487
base.strided.svariancewd.ndarray,"\nbase.strided.svariancewd.ndarray( N:integer, correction:number, x:Float32Array, \n stride:integer, offset:integer )\n Computes the variance of a single-precision floating-point strided array\n using Welford's algorithm and alternative indexing semantics.\n"
24882488
base.strided.svarianceyc,"\nbase.strided.svarianceyc( N:integer, correction:number, x:Float32Array, \n stride:integer )\n Computes the variance of a single-precision floating-point strided array\n using a one-pass algorithm proposed by Youngs and Cramer.\n"

info/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)