Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed May 25, 2024
1 parent e34c448 commit 0f7e92c
Show file tree
Hide file tree
Showing 65 changed files with 119 additions and 119 deletions.
58 changes: 29 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ var len = arr.length;
Creates a 64-bit complex number array from an array-like object or iterable.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

// From an array of interleaved real and imaginary components:
var arr1 = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] );
Expand Down Expand Up @@ -293,7 +293,7 @@ var len = arr.length;
Creates a new 64-bit complex number array from an array-like object or an iterable.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

// Create an array from interleaved real and imaginary components:
var arr = Complex64Array.from( [ 1.0, -1.0 ] );
Expand Down Expand Up @@ -377,7 +377,7 @@ if ( ITERATOR_SYMBOL === null ) {
To invoke a function for each `src` value, provide a callback function. If `src` is an iterable or an array-like object containing complex numbers, the callback must return either a complex number

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -409,7 +409,7 @@ or an array-like object containing real and imaginary components

```javascript
var Float32Array = require( '@stdlib/array-float32' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -458,7 +458,7 @@ If `src` is an array-like object containing interleaved real and imaginary compo

```javascript
var Float32Array = require( '@stdlib/array-float32' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -494,7 +494,7 @@ A callback function is provided two arguments:
To set the callback execution context, provide a `thisArg`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -529,7 +529,7 @@ var n = ctx.count;
Creates a new 64-bit complex number array from a variable number of arguments.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = Complex64Array.of( 1.0, -1.0, 2.0, -2.0 );
// returns <Complex64Array>
Expand Down Expand Up @@ -604,7 +604,7 @@ z = arr.at( -100 );
Copies a sequence of elements within the array starting at `start` and ending at `end` (non-inclusive) to the position starting at `target`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -663,7 +663,7 @@ im = imagf( z );
By default, `end` equals the number of array elements (i.e., one more than the last array index). To limit the sequence length, provide an `end` argument.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -722,7 +722,7 @@ im = imagf( z );
When a `target`, `start`, and/or `end` index is negative, the respective index is determined relative to the last array element. The following example achieves the same behavior as the previous example:

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -785,7 +785,7 @@ im = imagf( z );
Returns an iterator for iterating over array key-value pairs.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -901,7 +901,7 @@ var count = context.count;
Returns a modified typed array filled with a fill value.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -974,7 +974,7 @@ im = imagf( z );
When a `start` and/or `end` index is negative, the respective index is determined relative to the last array element.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -1086,7 +1086,7 @@ Returns the first element in an array for which a predicate function returns a t
```javascript
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

function predicate( v ) {
return ( realf( v ) === imagf( v ) );
Expand Down Expand Up @@ -1219,7 +1219,7 @@ Returns the last element in an array for which a predicate function returns a tr
```javascript
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

function predicate( v ) {
return ( realf( v ) === imagf( v ) );
Expand Down Expand Up @@ -1350,7 +1350,7 @@ var count = context.count;
Invokes a function once for each array element.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

function log( v, i ) {
console.log( '%s: %s', i, v.toString() );
Expand Down Expand Up @@ -1380,7 +1380,7 @@ The invoked function is provided three arguments:
To set the function execution context, provide a `thisArg`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

function fcn( v, i ) {
this.count += 1;
Expand Down Expand Up @@ -1451,7 +1451,7 @@ var z = arr.get( 100 );
Returns a boolean indicating whether an array includes a provided value.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = new Complex64Array( 5 );

Expand All @@ -1478,7 +1478,7 @@ bool = arr.includes( new Complex64( 4.0, -4.0 ), -3 );
Returns the first index at which a given element can be found.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = new Complex64Array( 5 );

Expand All @@ -1501,7 +1501,7 @@ idx = arr.indexOf( new Complex64( 4.0, -4.0 ), -3 );
If `searchElement` is not present in the array, the method returns `-1`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = new Complex64Array( 10 );

Expand Down Expand Up @@ -1581,7 +1581,7 @@ The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the
Returns the last index at which a given element can be found.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = new Complex64Array( 5 );

Expand All @@ -1604,7 +1604,7 @@ idx = arr.lastIndexOf( new Complex64( 4.0, -4.0 ), -1 );
If `searchElement` is not present in the array, the method returns `-1`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = new Complex64Array( 10 );

Expand All @@ -1625,7 +1625,7 @@ idx = arr.lastIndexOf( new Complex64( 2.0, -2.0 ), 0 );
Returns a new array with each element being the result of a provided callback function.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -1662,7 +1662,7 @@ The callback function is provided three arguments:
To set the function execution context, provide a `thisArg`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -1851,7 +1851,7 @@ im = imagf( z );
Sets one or more array elements.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -1884,7 +1884,7 @@ im = imagf( z );
By default, the method sets array elements starting at position (index) `i = 0`. To set elements starting elsewhere in the array, provide an index argument `i`.

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -1917,7 +1917,7 @@ im = imagf( z );
In addition to providing a complex number, to set one or more array elements, provide an array-like object containing either complex numbers

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );

Expand Down Expand Up @@ -2530,7 +2530,7 @@ Returns a new typed array with the element at a provided index replaced with a p
```javascript
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );

var arr = new Complex64Array( 3 );

Expand Down Expand Up @@ -2585,7 +2585,7 @@ var im = imagf( z );
<!-- eslint no-undef: "error" -->

```javascript
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var Float32Array = require( '@stdlib/array-float32' );
var logEach = require( '@stdlib/console-log-each' );
var Complex64Array = require( '@stdlib/array-complex64' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.at.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var bench = require( '@stdlib/bench-harness' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64 = require( '@stdlib/assert-is-complex64' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.copy_within.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var bench = require( '@stdlib/bench-harness' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.copy_within.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.entries.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var bench = require( '@stdlib/bench-harness' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.every.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var pkg = require( './../package.json' ).name;
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.fill.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var bench = require( '@stdlib/bench-harness' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.fill.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64Array = require('@stdlib/assert-is-complex64array');
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.filter.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var pkg = require( './../package.json' ).name;
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.find.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64 = require( '@stdlib/assert-is-complex64' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.find_index.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isInteger = require( '@stdlib/assert-is-integer' ).isPrimitive;
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.find_last.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64 = require( '@stdlib/assert-is-complex64' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.find_last_index.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isInteger = require( '@stdlib/assert-is-integer' ).isPrimitive;
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.for_each.length.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench-harness' );
var pow = require( '@stdlib/math-base-special-pow' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-realf' );
var imagf = require( '@stdlib/complex-imagf' );
var pkg = require( './../package.json' ).name;
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.get.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var bench = require( '@stdlib/bench-harness' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isComplex64 = require( '@stdlib/assert-is-complex64' );
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.includes.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var bench = require( '@stdlib/bench-harness' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
var pkg = require( './../package.json' ).name;
var Complex64Array = require( './../lib' );
Expand Down
Loading

0 comments on commit 0f7e92c

Please sign in to comment.