Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 15, 2024
1 parent a6116fd commit 8d41a54
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 18 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-12-14)
## Unreleased (2024-12-15)

<section class="packages">

Expand Down Expand Up @@ -172,6 +172,7 @@ A total of 3 people contributed to this release. Thank you to the following cont

<details>

- [`e43aaa9`](https://github.com/stdlib-js/stdlib/commit/e43aaa95f790584e26f189ab52267108bb423231) - **docs:** update REPL namespace documentation [(#3917)](https://github.com/stdlib-js/stdlib/pull/3917) _(by stdlib-bot, Philipp Burckhardt)_
- [`2c01b65`](https://github.com/stdlib-js/stdlib/commit/2c01b654e7fcfae9bde232c5fdda10d14f02e30e) - **feat:** add `ndfilterMap` to namespace _(by Athan Reines)_
- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - **feat:** add `ndreject` to namespace _(by Athan Reines)_
- [`b916456`](https://github.com/stdlib-js/stdlib/commit/b916456714e3c8a4ecaf6605adf4d36188e924f9) - **feat:** add `ndmap` and `ndfilter` to namespace _(by Athan Reines)_
Expand Down
1 change: 1 addition & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4124,6 +4124,7 @@ ndat,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nndat( x, 0, 1 )\nndat( x, 1, 0 )
ndempty,"var arr = ndempty( [ 2, 2 ] )\nvar sh = arr.shape\nvar dt = arr.dtype\n"
ndemptyLike,"var x = base.ndzeros( 'float64', [ 2, 2 ], 'row-major' )\nvar sh = x.shape\nvar dt = x.dtype\nvar y = ndemptyLike( x )\nsh = y.shape\ndt = y.dtype\n"
ndfilter,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { return v > 2.0; };\nvar y = ndfilter( x, f );\nndarray2array( y )\n"
ndfilterMap,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { if ( v > 2.0 ) { return v * 10.0; } };\nvar y = ndfilterMap( x, f );\nndarray2array( y )\n"
ndims,"var n = ndims( ndzeros( [ 3, 3, 3 ] ) )\n"
nditerColumnEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumnEntries( x );\nvar v = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\nv = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\n"
nditerColumns,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumns( x );\nvar v = it.next().value;\nndarray2array( v )\nv = it.next().value;\nndarray2array( v )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion help/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1970,8 +1970,8 @@ base.strided.dstdevyc,"\nbase.strided.dstdevyc( N:integer, correction:number, x:
base.strided.dstdevyc.ndarray,"\nbase.strided.dstdevyc.ndarray( N:integer, correction:number, x:Float64Array, \n stride:integer, offset:integer )\n Computes the standard deviation of a double-precision floating-point strided\n array using a one-pass algorithm proposed by Youngs and Cramer and\n alternative indexing semantics.\n"
base.strided.dsum,"\nbase.strided.dsum( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements.\n"
base.strided.dsum.ndarray,"\nbase.strided.dsum.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the sum of double-precision floating-point strided array elements\n using alternative indexing semantics.\n"
base.strided.dsumkbn,"\nbase.strided.dsumkbn( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm.\n"
base.strided.dsumkbn.ndarray,"\nbase.strided.dsumkbn.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm and alternative indexing\n semantics.\n"
base.strided.dsumkbn,"\nbase.strided.dsumkbn( N:integer, x:Float64Array, strideX:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm.\n"
base.strided.dsumkbn.ndarray,"\nbase.strided.dsumkbn.ndarray( N:integer, x:Float64Array, strideX:integer, \n offsetX:integer )\n Computes the sum of double-precision floating-point strided array elements\n using an improved Kahan–Babuška algorithm and alternative indexing\n semantics.\n"
base.strided.dsumkbn2,"\nbase.strided.dsumkbn2( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements\n using a second-order iterative Kahan–Babuška algorithm.\n"
base.strided.dsumkbn2.ndarray,"\nbase.strided.dsumkbn2.ndarray( N:integer, x:Float64Array, stride:integer, \n offset:integer )\n Computes the sum of double-precision floating-point strided array elements\n using a second-order iterative Kahan–Babuška algorithm and alternative\n indexing semantics.\n"
base.strided.dsumors,"\nbase.strided.dsumors( N:integer, x:Float64Array, stride:integer )\n Computes the sum of double-precision floating-point strided array elements\n using ordinary recursive summation.\n"
Expand Down Expand Up @@ -4125,6 +4125,7 @@ ndat,"\nndat( x:ndarray[, ...indices:integer] )\n Returns an ndarray element.
ndempty,"\nndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns an uninitialized ndarray having a specified shape and data type.\n"
ndemptyLike,"\nndemptyLike( x:ndarray[, options:Object] )\n Returns an uninitialized ndarray having the same shape and data type as a\n provided input ndarray.\n"
ndfilter,"\nndfilter( x:ndarray[, options:Object], predicate:Function[, thisArg:any] )\n Returns a shallow copy of an ndarray containing only those elements which\n pass a test implemented by a predicate function.\n"
ndfilterMap,"\nndfilterMap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )\n Filters and maps elements in an input ndarray to elements in a new output\n ndarray according to a callback function.\n"
ndims,"\nndims( x:ndarray )\n Returns the number of ndarray dimensions.\n"
nditerColumnEntries,"\nnditerColumnEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, column] pairs for each column in a\n matrix (or stack of matrices).\n"
nditerColumns,"\nnditerColumns( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each column in a matrix (or stack of\n matrices).\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1971,8 +1971,8 @@ base.strided.dstdevyc,"base.strided.dstdevyc( N, correction, x, stride )"
base.strided.dstdevyc.ndarray,"base.strided.dstdevyc.ndarray( N, correction, x, stride, offset )"
base.strided.dsum,"base.strided.dsum( N, x, stride )"
base.strided.dsum.ndarray,"base.strided.dsum.ndarray( N, x, stride, offset )"
base.strided.dsumkbn,"base.strided.dsumkbn( N, x, stride )"
base.strided.dsumkbn.ndarray,"base.strided.dsumkbn.ndarray( N, x, stride, offset )"
base.strided.dsumkbn,"base.strided.dsumkbn( N, x, strideX )"
base.strided.dsumkbn.ndarray,"base.strided.dsumkbn.ndarray( N, x, strideX, offsetX )"
base.strided.dsumkbn2,"base.strided.dsumkbn2( N, x, stride )"
base.strided.dsumkbn2.ndarray,"base.strided.dsumkbn2.ndarray( N, x, stride, offset )"
base.strided.dsumors,"base.strided.dsumors( N, x, stride )"
Expand Down Expand Up @@ -4177,6 +4177,7 @@ ndat,"ndat( x[, ...indices] )"
ndempty,"ndempty( shape[, options] )"
ndemptyLike,"ndemptyLike( x[, options] )"
ndfilter,"ndfilter( x[, options], predicate[, thisArg] )"
ndfilterMap,"ndfilterMap( x[, options], fcn[, thisArg] )"
ndims,"ndims( x )"
nditerColumnEntries,"nditerColumnEntries( x[, options] )"
nditerColumns,"nditerColumns( x[, options] )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1971,8 +1971,8 @@ base.strided.dstdevyc,"base.strided.dstdevyc( N:integer, correction:number, x:Fl
base.strided.dstdevyc.ndarray,"base.strided.dstdevyc.ndarray( N:integer, correction:number, x:Float64Array, stride:integer, offset:integer )"
base.strided.dsum,"base.strided.dsum( N:integer, x:Float64Array, stride:integer )"
base.strided.dsum.ndarray,"base.strided.dsum.ndarray( N:integer, x:Float64Array, stride:integer, offset:integer )"
base.strided.dsumkbn,"base.strided.dsumkbn( N:integer, x:Float64Array, stride:integer )"
base.strided.dsumkbn.ndarray,"base.strided.dsumkbn.ndarray( N:integer, x:Float64Array, stride:integer, offset:integer )"
base.strided.dsumkbn,"base.strided.dsumkbn( N:integer, x:Float64Array, strideX:integer )"
base.strided.dsumkbn.ndarray,"base.strided.dsumkbn.ndarray( N:integer, x:Float64Array, strideX:integer, offsetX:integer )"
base.strided.dsumkbn2,"base.strided.dsumkbn2( N:integer, x:Float64Array, stride:integer )"
base.strided.dsumkbn2.ndarray,"base.strided.dsumkbn2.ndarray( N:integer, x:Float64Array, stride:integer, offset:integer )"
base.strided.dsumors,"base.strided.dsumors( N:integer, x:Float64Array, stride:integer )"
Expand Down Expand Up @@ -4177,6 +4177,7 @@ ndat,"ndat( x:ndarray[, ...indices:integer] )"
ndempty,"ndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )"
ndemptyLike,"ndemptyLike( x:ndarray[, options:Object] )"
ndfilter,"ndfilter( x:ndarray[, options:Object], predicate:Function[, thisArg:any] )"
ndfilterMap,"ndfilterMap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )"
ndims,"ndims( x:ndarray )"
nditerColumnEntries,"nditerColumnEntries( x:ndarray[, options:Object] )"
nditerColumns,"nditerColumns( x:ndarray[, options:Object] )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit 8d41a54

Please sign in to comment.