Skip to content

Commit 27648f8

Browse files
committed
Auto-generated commit
1 parent 1cbd4ea commit 27648f8

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

CHANGELOG.md

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

7-
## Unreleased (2026-02-16)
7+
## Unreleased (2026-02-25)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`33a845a`](https://github.com/stdlib-js/stdlib/commit/33a845af56916162ec6229a6ea8c51b48017ac20) - **docs:** update REPL namespace documentation [(#10478)](https://github.com/stdlib-js/stdlib/pull/10478) _(by stdlib-bot)_
1516
- [`a20ca4a`](https://github.com/stdlib-js/stdlib/commit/a20ca4a869cb0f37fce36449969104314f3e78c8) - **docs:** update REPL namespace documentation [(#10309)](https://github.com/stdlib-js/stdlib/pull/10309) _(by stdlib-bot, Philipp Burckhardt)_
1617

1718
</details>

data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
abs,"\nabs( x[, options] )\n Computes the absolute value for each element in an ndarray.\n\n The function returns an ndarray having the same shape as the input ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input array. Must have a numeric or \"generic\" data type.\n\n options: Object (optional)\n Options.\n\n options.dtype: string|DataType (optional)\n Output array data type. Must be a real-valued or \"generic\" data type.\n\n options.order: string (optional)\n Output array order. Must be either row-major (C-style) or column-major\n (Fortran-style). By default, the order of the output array is the same\n as the input array.\n\n Returns\n -------\n y: ndarray\n Output array containing element-wise results.\n\n Examples\n --------\n > var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\n > var x = array( arr );\n > var y = abs( x );\n > ndarray2array( y )\n [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]\n\n\nabs.assign( x, y )\n Computes the absolute value for each element in an ndarray and assigns\n results to a provided output ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input array. Must have a numeric or \"generic\" data type.\n\n y: ndarray\n Output array.\n\n Returns\n -------\n y: ndarray\n Output array.\n\n Examples\n --------\n > var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\n > var x = array( arr );\n > var sh = ndarrayShape( x );\n > var y = ndzeros( sh );\n > var out = abs.assign( x, y );\n > var bool = ( out === y )\n true\n > ndarray2array( y )\n [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]\n\n"
2-
abs.assign,"\nabs.assign( x, y )\n Computes the absolute value for each element in an ndarray and assigns\n results to a provided output ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input array. Must have a numeric or \"generic\" data type.\n\n y: ndarray\n Output array.\n\n Returns\n -------\n y: ndarray\n Output array.\n\n Examples\n --------\n > var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\n > var x = array( arr );\n > var sh = ndarrayShape( x );\n > var y = ndzeros( sh );\n > var out = abs.assign( x, y );\n > var bool = ( out === y )\n true\n > ndarray2array( y )\n [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]"
1+
abs,"\nabs( x[, options] )\n Computes the absolute value for each element in an ndarray.\n\n The function returns an ndarray having the same shape as the input ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input array. Must have a numeric or \"generic\" data type.\n\n options: Object (optional)\n Options.\n\n options.dtype: string|DataType (optional)\n Output array data type. Must be a real-valued or \"generic\" data type.\n\n options.order: string (optional)\n Output array order. Must be either row-major (C-style) or column-major\n (Fortran-style). By default, the order of the output array is the same\n as the input array.\n\n Returns\n -------\n y: ndarray\n Output array containing element-wise results.\n\n Examples\n --------\n > var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\n > var x = array( arr );\n > var y = abs( x )\n <ndarray>[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]\n\n\nabs.assign( x, y )\n Computes the absolute value for each element in an ndarray and assigns\n results to a provided output ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input array. Must have a numeric or \"generic\" data type.\n\n y: ndarray\n Output array.\n\n Returns\n -------\n y: ndarray\n Output array.\n\n Examples\n --------\n > var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\n > var x = array( arr );\n > var sh = ndarrayShape( x );\n > var y = ndzeros( sh );\n > var out = abs.assign( x, y )\n <ndarray>[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]\n > var bool = ( out === y )\n true\n\n"
2+
abs.assign,"\nabs.assign( x, y )\n Computes the absolute value for each element in an ndarray and assigns\n results to a provided output ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input array. Must have a numeric or \"generic\" data type.\n\n y: ndarray\n Output array.\n\n Returns\n -------\n y: ndarray\n Output array.\n\n Examples\n --------\n > var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\n > var x = array( arr );\n > var sh = ndarrayShape( x );\n > var y = ndzeros( sh );\n > var out = abs.assign( x, y )\n <ndarray>[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]\n > var bool = ( out === y )\n true"
33
acartesianPower,"\nacartesianPower( x, n )\n Returns the Cartesian power.\n\n If provided an empty array, the function returns an empty array.\n\n If `n` is less than or equal to zero, the function returns an empty array.\n\n Parameters\n ----------\n x: ArrayLikeObject\n Input array.\n\n n: integer\n Power.\n\n Returns\n -------\n out: Array<Array>\n Cartesian product.\n\n Examples\n --------\n > var x = [ 1, 2 ];\n > var out = acartesianPower( x, 2 )\n [ [ 1, 1 ], [ 1, 2 ], [ 2, 1 ], [ 2, 2 ] ]\n\n See Also\n --------\n acartesianProduct, acartesianSquare\n"
44
acartesianProduct,"\nacartesianProduct( x1, x2 )\n Returns the Cartesian product.\n\n If provided one or more empty arrays, the function returns an empty array.\n\n Parameters\n ----------\n x1: ArrayLikeObject\n First input array.\n\n x2: ArrayLikeObject\n Second input array.\n\n Returns\n -------\n out: Array<Array>\n Cartesian product.\n\n Examples\n --------\n > var x1 = [ 1, 2 ];\n > var x2 = [ 3, 4 ];\n > var out = acartesianProduct( x1, x2 )\n [ [ 1, 3 ], [ 1, 4 ], [ 2, 3 ], [ 2, 4 ] ]\n\n See Also\n --------\n acartesianPower, acartesianSquare\n"
55
acartesianSquare,"\nacartesianSquare( x )\n Returns the Cartesian square.\n\n If provided an empty array, the function returns an empty array.\n\n Parameters\n ----------\n x: ArrayLikeObject\n Input array.\n\n Returns\n -------\n out: Array<Array>\n Cartesian product.\n\n Examples\n --------\n > var out = acartesianSquare( [ 1, 2 ] )\n [ [ 1, 1 ], [ 1, 2 ], [ 2, 1 ], [ 2, 2 ] ]\n\n See Also\n --------\n acartesianPower, acartesianProduct\n"

data/data.json

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

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)