Skip to content

Commit d52dd19

Browse files
committed
Auto-generated commit
1 parent 3a32075 commit d52dd19

22 files changed

+24
-127
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,7 @@ A total of 40 issues were closed in this release:
709709

710710
<details>
711711

712+
- [`e2c03c0`](https://github.com/stdlib-js/stdlib/commit/e2c03c048787bde4a01ed8b6968ea6437e9e652a) - **docs:** improve doctests for complex number instances in `ndarray/base/unary` [(#8999)](https://github.com/stdlib-js/stdlib/pull/8999) _(by Aryan kumar, Athan Reines)_
712713
- [`51f5eea`](https://github.com/stdlib-js/stdlib/commit/51f5eea4350c3aff97620bda4ff3066935c23e3f) - **docs:** improve doctests for ndarray instances in `ndarray/some-by` [(#9410)](https://github.com/stdlib-js/stdlib/pull/9410) _(by kaushal-kumar-it, Athan Reines)_
713714
- [`571b88f`](https://github.com/stdlib-js/stdlib/commit/571b88f7e7b93c3578efc017cb8e3bd9b6b99954) - **docs:** improve doctests for ndarray instances in `ndarray/map` [(#9676)](https://github.com/stdlib-js/stdlib/pull/9676) _(by Shreelaxmi Hegde, Athan Reines)_
714715
- [`709563c`](https://github.com/stdlib-js/stdlib/commit/709563c0d7337b5c0632d1988fb263cf39305f86) - **feat:** update `ndarray/base` TypeScript declarations [(#9716)](https://github.com/stdlib-js/stdlib/pull/9716) _(by stdlib-bot)_
@@ -2054,8 +2055,9 @@ A total of 40 issues were closed in this release:
20542055

20552056
### Contributors
20562057

2057-
A total of 33 people contributed to this release. Thank you to the following contributors:
2058+
A total of 34 people contributed to this release. Thank you to the following contributors:
20582059

2060+
- Aryan kumar
20592061
- Athan Reines
20602062
- Bhavishy Agrawal
20612063
- Bhupesh Kumar

base/unary/lib/0d_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,7 @@
101101
* unary0d( x, y, scale );
102102
*
103103
* var v = y.data.get( 0 );
104-
*
105-
* var re = realf( v );
106-
* // returns 30.0
107-
*
108-
* var im = imagf( v );
109-
* // returns 40.0
104+
* // returns <Complex64>[ 30.0, 40.0 ]
110105
*/
111106
function unary0d( x, y, fcn ) {
112107
y.accessors[ 1 ]( y.data, y.offset, fcn( x.accessors[ 0 ]( x.data, x.offset ) ) ); // eslint-disable-line max-len

base/unary/lib/10d_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,7 @@
104104
* unary10d( x, y, true, scale );
105105
*
106106
* var v = y.data.get( 0 );
107-
*
108-
* var re = realf( v );
109-
* // returns 10.0
110-
*
111-
* var im = imagf( v );
112-
* // returns 20.0
107+
* // returns <Complex64>[ 10.0, 20.0 ]
113108
*/
114109
function unary10d( x, y, isRowMajor, fcn ) { // eslint-disable-line max-statements
115110
var xbuf;

base/unary/lib/10d_blocked_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,7 @@ var blockSize = require( './../../../base/unary-tiling-block-size' );
108108
* blockedunary10d( x, y, scale );
109109
*
110110
* var v = y.data.get( 0 );
111-
*
112-
* var re = realf( v );
113-
* // returns 10.0
114-
*
115-
* var im = imagf( v );
116-
* // returns 20.0
111+
* // returns <Complex64>[ 10.0, 20.0 ]
117112
*/
118113
function blockedunary10d( x, y, fcn ) { // eslint-disable-line max-statements, max-lines-per-function
119114
var bsize;

base/unary/lib/1d_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,7 @@
101101
* unary1d( x, y, scale );
102102
*
103103
* var v = y.data.get( 0 );
104-
*
105-
* var re = realf( v );
106-
* // returns 10.0
107-
*
108-
* var im = imagf( v );
109-
* // returns 20.0
104+
* // returns <Complex64>[ 10.0, 20.0 ]
110105
*/
111106
function unary1d( x, y, fcn ) {
112107
var xbuf;

base/unary/lib/2d_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,7 @@
102102
* unary2d( x, y, true, scale );
103103
*
104104
* var v = y.data.get( 0 );
105-
*
106-
* var re = realf( v );
107-
* // returns 10.0
108-
*
109-
* var im = imagf( v );
110-
* // returns 20.0
105+
* // returns <Complex64>[ 10.0, 20.0 ]
111106
*/
112107
function unary2d( x, y, isRowMajor, fcn ) {
113108
var xbuf;

base/unary/lib/2d_blocked_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,7 @@ var blockSize = require( './../../../base/unary-tiling-block-size' );
106106
* blockedunary2d( x, y, scale );
107107
*
108108
* var v = y.data.get( 0 );
109-
*
110-
* var re = realf( v );
111-
* // returns 10.0
112-
*
113-
* var im = imagf( v );
114-
* // returns 20.0
109+
* // returns <Complex64>[ 10.0, 20.0 ]
115110
*/
116111
function blockedunary2d( x, y, fcn ) {
117112
var bsize;

base/unary/lib/3d_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,7 @@
102102
* unary3d( x, y, true, scale );
103103
*
104104
* var v = y.data.get( 0 );
105-
*
106-
* var re = realf( v );
107-
* // returns 10.0
108-
*
109-
* var im = imagf( v );
110-
* // returns 20.0
105+
* // returns <Complex64>[ 10.0, 20.0 ]
111106
*/
112107
function unary3d( x, y, isRowMajor, fcn ) {
113108
var xbuf;

base/unary/lib/3d_blocked_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,7 @@ var blockSize = require( './../../../base/unary-tiling-block-size' );
108108
* blockedunary3d( x, y, scale );
109109
*
110110
* var v = y.data.get( 0 );
111-
*
112-
* var re = realf( v );
113-
* // returns 10.0
114-
*
115-
* var im = imagf( v );
116-
* // returns 20.0
111+
* // returns <Complex64>[ 10.0, 20.0 ]
117112
*/
118113
function blockedunary3d( x, y, fcn ) {
119114
var bsize;

base/unary/lib/4d_accessors.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,7 @@
102102
* unary4d( x, y, true, scale );
103103
*
104104
* var v = y.data.get( 0 );
105-
*
106-
* var re = realf( v );
107-
* // returns 10.0
108-
*
109-
* var im = imagf( v );
110-
* // returns 20.0
105+
* // returns <Complex64>[ 10.0, 20.0 ]
111106
*/
112107
function unary4d( x, y, isRowMajor, fcn ) {
113108
var xbuf;

0 commit comments

Comments
 (0)