Skip to content

Commit f07e066

Browse files
committed
Auto-generated commit
1 parent 5328dc9 commit f07e066

22 files changed

Lines changed: 22 additions & 147 deletions

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,7 @@ A total of 49 issues were closed in this release:
929929

930930
<details>
931931

932+
- [`20df517`](https://github.com/stdlib-js/stdlib/commit/20df51759bde322eb55d2f4eef4b17e99a9eb19c) - **docs:** improve doctests for complex number typed arrays in `ndarray/base/unary-accumulate` [(#12046)](https://github.com/stdlib-js/stdlib/pull/12046) _(by Karan Anand)_
932933
- [`c5215cc`](https://github.com/stdlib-js/stdlib/commit/c5215cca9085bae13510df122d8637595eb6645d) - **docs:** improve doctests for complex number typed arrays in `ndarray/base/from-scalar` [(#12049)](https://github.com/stdlib-js/stdlib/pull/12049) _(by Karan Anand, Athan Reines)_
933934
- [`1e326dd`](https://github.com/stdlib-js/stdlib/commit/1e326dd99001c7919f24ad6f477597d14da00b23) - **docs:** improve doctests for complex number typed arrays in `ndarray/base/nullary` [(#12045)](https://github.com/stdlib-js/stdlib/pull/12045) _(by Karan Anand)_
934935
- [`c61a3e6`](https://github.com/stdlib-js/stdlib/commit/c61a3e6bbdddc67fc7b384e9bf283a34b75fd38f) - **docs:** improve doctests for complex number typed arrays in `ndarray/base/unary-by` [(#12047)](https://github.com/stdlib-js/stdlib/pull/12047) _(by Karan Anand)_

base/unary-accumulate/lib/0d_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,7 @@
8080
*
8181
* // Compute the sum:
8282
* var v = accumulate0d( x, new Complex64( 0.0, 0.0 ), add );
83-
* // returns <Complex64>
84-
*
85-
* var re = realf( v );
86-
* // returns 3.0
87-
*
88-
* var im = imagf( v );
89-
* // returns 4.0
83+
* // returns <Complex64>[ 3.0, 4.0 ]
9084
*/
9185
function accumulate0d( x, initial, clbk ) {
9286
return clbk( initial, x.accessors[ 0 ]( x.data, x.offset ) );

base/unary-accumulate/lib/10d_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,7 @@ var strides2order = require( './../../../base/strides2order' );
8787
*
8888
* // Compute the sum:
8989
* var v = accumulate10d( x, new Complex64( 0.0, 0.0 ), add );
90-
* // returns <Complex64>
91-
*
92-
* var re = realf( v );
93-
* // returns 16.0
94-
*
95-
* var im = imagf( v );
96-
* // returns 20.0
90+
* // returns <Complex64>[ 16.0, 20.0 ]
9791
*/
9892
function accumulate10d( x, initial, clbk ) { // eslint-disable-line max-statements
9993
var xbuf;

base/unary-accumulate/lib/10d_blocked_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,7 @@ var blockSize = require( './../../../base/nullary-tiling-block-size' );
8888
*
8989
* // Compute the sum:
9090
* var v = blockedaccumulate10d( x, new Complex64( 0.0, 0.0 ), add );
91-
* // returns <Complex64>
92-
*
93-
* var re = realf( v );
94-
* // returns 16.0
95-
*
96-
* var im = imagf( v );
97-
* // returns 20.0
91+
* // returns <Complex64>[ 16.0, 20.0 ]
9892
*/
9993
function blockedaccumulate10d( x, initial, clbk ) { // eslint-disable-line max-statements, max-lines-per-function
10094
var bsize;

base/unary-accumulate/lib/1d_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,7 @@
8080
*
8181
* // Compute the sum:
8282
* var v = accumulate1d( x, new Complex64( 0.0, 0.0 ), add );
83-
* // returns <Complex64>
84-
*
85-
* var re = realf( v );
86-
* // returns 16.0
87-
*
88-
* var im = imagf( v );
89-
* // returns 20.0
83+
* // returns <Complex64>[ 16.0, 20.0 ]
9084
*/
9185
function accumulate1d( x, initial, clbk ) {
9286
var xbuf;

base/unary-accumulate/lib/2d_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,7 @@ var strides2order = require( './../../../base/strides2order' );
8585
*
8686
* // Compute the sum:
8787
* var v = accumulate2d( x, new Complex64( 0.0, 0.0 ), add );
88-
* // returns <Complex64>
89-
*
90-
* var re = realf( v );
91-
* // returns 16.0
92-
*
93-
* var im = imagf( v );
94-
* // returns 20.0
88+
* // returns <Complex64>[ 16.0, 20.0 ]
9589
*/
9690
function accumulate2d( x, initial, clbk ) {
9791
var xbuf;

base/unary-accumulate/lib/2d_blocked_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,7 @@ var blockSize = require( './../../../base/nullary-tiling-block-size' );
8686
*
8787
* // Compute the sum:
8888
* var v = blockedaccumulate2d( x, new Complex64( 0.0, 0.0 ), add );
89-
* // returns <Complex64>
90-
*
91-
* var re = realf( v );
92-
* // returns 16.0
93-
*
94-
* var im = imagf( v );
95-
* // returns 20.0
89+
* // returns <Complex64>[ 16.0, 20.0 ]
9690
*/
9791
function blockedaccumulate2d( x, initial, clbk ) {
9892
var bsize;

base/unary-accumulate/lib/3d_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,7 @@ var strides2order = require( './../../../base/strides2order' );
8585
*
8686
* // Compute the sum:
8787
* var v = accumulate3d( x, new Complex64( 0.0, 0.0 ), add );
88-
* // returns <Complex64>
89-
*
90-
* var re = realf( v );
91-
* // returns 16.0
92-
*
93-
* var im = imagf( v );
94-
* // returns 20.0
88+
* // returns <Complex64>[ 16.0, 20.0 ]
9589
*/
9690
function accumulate3d( x, initial, clbk ) {
9791
var xbuf;

base/unary-accumulate/lib/3d_blocked_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,7 @@ var blockSize = require( './../../../base/nullary-tiling-block-size' );
8888
*
8989
* // Compute the sum:
9090
* var v = blockedaccumulate3d( x, new Complex64( 0.0, 0.0 ), add );
91-
* // returns <Complex64>
92-
*
93-
* var re = realf( v );
94-
* // returns 16.0
95-
*
96-
* var im = imagf( v );
97-
* // returns 20.0
91+
* // returns <Complex64>[ 16.0, 20.0 ]
9892
*/
9993
function blockedaccumulate3d( x, initial, clbk ) {
10094
var bsize;

base/unary-accumulate/lib/4d_accessors.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,7 @@ var strides2order = require( './../../../base/strides2order' );
8585
*
8686
* // Compute the sum:
8787
* var v = accumulate4d( x, new Complex64( 0.0, 0.0 ), add );
88-
* // returns <Complex64>
89-
*
90-
* var re = realf( v );
91-
* // returns 16.0
92-
*
93-
* var im = imagf( v );
94-
* // returns 20.0
88+
* // returns <Complex64>[ 16.0, 20.0 ]
9589
*/
9690
function accumulate4d( x, initial, clbk ) {
9791
var xbuf;

0 commit comments

Comments
 (0)