Skip to content

Commit 7186864

Browse files
committed
Auto-generated commit
1 parent 6cad7f7 commit 7186864

File tree

19 files changed

+32
-24
lines changed

19 files changed

+32
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,8 @@ A total of 23 issues were closed in this release:
497497

498498
<details>
499499

500+
- [`46ff8ea`](https://github.com/stdlib-js/stdlib/commit/46ff8ea7761ae438c4718681c5890f146fb0985e) - **docs:** minor clean-up _(by Philipp Burckhardt)_
501+
- [`721033e`](https://github.com/stdlib-js/stdlib/commit/721033eede9b3a4667728f40695d933f49f541c1) - **docs:** minor clean-up _(by Philipp Burckhardt)_
500502
- [`c221279`](https://github.com/stdlib-js/stdlib/commit/c2212790b0118b7787b5e292244b4364c08ea05a) - **docs:** minor clean-up _(by Philipp Burckhardt)_
501503
- [`85a9c18`](https://github.com/stdlib-js/stdlib/commit/85a9c18a4a4edcf9ccfc590137ecc76812e86204) - **chore:** disable lint rule _(by Philipp Burckhardt)_
502504
- [`4dba421`](https://github.com/stdlib-js/stdlib/commit/4dba421f5bd8acafdd58e1c7681965b9ad267bc7) - **docs:** minor clean-up _(by Philipp Burckhardt)_

ext/base/gapxsum/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsum( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

ext/base/gapxsumkbn/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumkbn( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

ext/base/gapxsumkbn2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumkbn2( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

ext/base/gapxsumors/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumors( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

ext/base/gapxsumpw/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumpw( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

ext/base/grev/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface Routine {
4343
<T = unknown>( N: number, x: Collection<T>, strideX: number ): Collection<T>;
4444

4545
/**
46-
* Reverses a strided array in-place. using alternative indexing semantics.
46+
* Reverses a strided array in-place using alternative indexing semantics.
4747
*
4848
* @param N - number of indexed elements
4949
* @param x - input array

ext/base/gsortins/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The function has the following parameters:
4646
- **N**: number of indexed elements.
4747
- **order**: sort order. If `order < 0.0`, the input strided array is sorted in **decreasing** order. If `order > 0.0`, the input strided array is sorted in **increasing** order. If `order == 0.0`, the input strided array is left unchanged.
4848
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
49-
- **stride**: stride length.
49+
- **strideX**: stride length.
5050

5151
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to sort every other element:
5252

@@ -106,7 +106,7 @@ gsortins.ndarray( 3, 1.0, x, 1, x.length-3 );
106106
## Notes
107107

108108
- If `N <= 0` or `order == 0.0`, both functions return `x` unchanged.
109-
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor])
109+
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor]).
110110
- The algorithm distinguishes between `-0` and `+0`. When sorted in increasing order, `-0` is sorted before `+0`. When sorted in decreasing order, `-0` is sorted after `+0`.
111111
- The algorithm sorts `NaN` values to the end. When sorted in increasing order, `NaN` values are sorted last. When sorted in decreasing order, `NaN` values are sorted first.
112112
- The algorithm has space complexity `O(1)` and worst case time complexity `O(N^2)`.

ext/base/ndarray/dcusum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var xbuf = new Float64Array( [ 1.0, 3.0, 4.0, 2.0 ] );
5050
var x = new ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
5151

5252
var ybuf = new Float64Array( [ 0.0, 0.0, 0.0, 0.0 ] );
53-
var y = new ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
53+
var y = new ndarray( 'float64', ybuf, [ 4 ], [ 1 ], 0, 'row-major' );
5454

5555
var initial = scalar2ndarray( 0.0, 'float64', 'row-major' );
5656

ext/base/ndarray/gcusum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var xbuf = [ 1.0, 3.0, 4.0, 2.0 ];
4949
var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
5050

5151
var ybuf = [ 0.0, 0.0, 0.0, 0.0 ];
52-
var y = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
52+
var y = new ndarray( 'generic', ybuf, [ 4 ], [ 1 ], 0, 'row-major' );
5353

5454
var initial = scalar2ndarray( 0.0, 'generic', 'row-major' );
5555

0 commit comments

Comments
 (0)