Skip to content

Commit 79a4c40

Browse files
committed
Auto-generated commit
1 parent 5dfca5e commit 79a4c40

12 files changed

Lines changed: 12 additions & 11 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161

6262
<details>
6363

64+
- [`7dc9808`](https://github.com/stdlib-js/stdlib/commit/7dc98086e9503556dc548aa2e4899f299c12999f) - **docs:** fix examples, notes, and return description [(#13151)](https://github.com/stdlib-js/stdlib/pull/13151) _(by Philipp Burckhardt)_
6465
- [`d5f4058`](https://github.com/stdlib-js/stdlib/commit/d5f40586d65278965d4e3c98b774ca7505a92e0a) - **docs:** update option description [(#13145)](https://github.com/stdlib-js/stdlib/pull/13145) _(by stdlib-bot)_
6566
- [`7ff0456`](https://github.com/stdlib-js/stdlib/commit/7ff0456ac62f36e058b8f25bd3628750ab3daf7f) - **docs:** document accepted arguments _(by Athan Reines)_
6667
- [`56ffe96`](https://github.com/stdlib-js/stdlib/commit/56ffe96cd1f83bb3e66cc0c2b63eba05fd2d5ee9) - **docs:** document accepted arguments _(by Athan Reines)_

‎matrix/complex128/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ var sh = getShape( arr );
118118

119119
The function accepts the following arguments:
120120

121-
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array- like objects, each of which must have the same number of elements.
121+
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array-like objects, each of which must have the same number of elements.
122122
- **options**: function options. See above.
123123

124124
#### Complex128Matrix( buffer\[, byteOffset\[, shape]]\[, options] )

‎matrix/complex128/docs/types/index.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ interface Complex128Matrix {
443443
* var ArrayBuffer = require( '@stdlib/array/buffer' );
444444
*
445445
* var buf = new ArrayBuffer( 64 );
446-
* var arr = new Complex128Matrix( buf, 16, [ 2, 1 ] );
446+
* var arr = new Complex128Matrix( buf, 16, 2, 1 );
447447
* // returns <ndarray>
448448
*
449449
* var sh = getShape( arr );

‎matrix/complex64/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ var sh = getShape( arr );
118118

119119
The function accepts the following arguments:
120120

121-
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array- like objects, each of which must have the same number of elements.
121+
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array-like objects, each of which must have the same number of elements.
122122
- **options**: function options. See above.
123123

124124
#### Complex64Matrix( buffer\[, byteOffset\[, shape]]\[, options] )

‎matrix/complex64/docs/types/index.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ interface Complex64Matrix {
443443
* var ArrayBuffer = require( '@stdlib/array/buffer' );
444444
*
445445
* var buf = new ArrayBuffer( 64 );
446-
* var arr = new Complex64Matrix( buf, 16, [ 2, 1 ] );
446+
* var arr = new Complex64Matrix( buf, 16, 2, 1 );
447447
* // returns <ndarray>
448448
*
449449
* var sh = getShape( arr );

‎matrix/ctor/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ var sh2 = getShape( arr2 );
161161

162162
The function accepts the following arguments:
163163

164-
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array- like objects, each of which must have the same number of elements.
164+
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array-like objects, each of which must have the same number of elements.
165165
- **dtype**: [data type][@stdlib/ndarray/dtypes].
166166
- **options**: function options. See above.
167167

‎matrix/float32/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ var sh = getShape( arr );
116116

117117
The function accepts the following arguments:
118118

119-
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array- like objects, each of which must have the same number of elements.
119+
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array-like objects, each of which must have the same number of elements.
120120
- **options**: function options. See above.
121121

122122
#### Float32Matrix( buffer\[, byteOffset\[, shape]]\[, options] )

‎matrix/float32/docs/types/index.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ interface Float32Matrix {
443443
* var ArrayBuffer = require( '@stdlib/array/buffer' );
444444
*
445445
* var buf = new ArrayBuffer( 32 );
446-
* var arr = new Float32Matrix( buf, 8, [ 2, 1 ] );
446+
* var arr = new Float32Matrix( buf, 8, 2, 1 );
447447
* // returns <ndarray>
448448
*
449449
* var sh = getShape( arr );

‎matrix/float64/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ var sh = getShape( arr );
116116

117117
The function accepts the following arguments:
118118

119-
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array- like objects, each of which must have the same number of elements.
119+
- **obj**: array-like object or iterable from which to generate an [ndarray][@stdlib/ndarray/ctor]. If an array-like object, the value must be a nested array (i.e., an array-like object of array-like objects), where each nested array must have the same number of elements. If an iterable, the iterable must return array-like objects, each of which must have the same number of elements.
120120
- **options**: function options. See above.
121121

122122
#### Float64Matrix( buffer\[, byteOffset\[, shape]]\[, options] )

‎matrix/float64/docs/types/index.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ interface Float64Matrix {
443443
* var ArrayBuffer = require( '@stdlib/array/buffer' );
444444
*
445445
* var buf = new ArrayBuffer( 32 );
446-
* var arr = new Float64Matrix( buf, 8, [ 2, 1 ] );
446+
* var arr = new Float64Matrix( buf, 8, 2, 1 );
447447
* // returns <ndarray>
448448
*
449449
* var sh = getShape( arr );

0 commit comments

Comments
 (0)