Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ import zindexOfTruthy = require( '@stdlib/blas/ext/base/zindex-of-truthy' );
import zlastIndexOfRow = require( '@stdlib/blas/ext/base/zlast-index-of-row' );
import znancount = require( '@stdlib/blas/ext/base/znancount' );
import zoneTo = require( '@stdlib/blas/ext/base/zone-to' );
import zreplicate = require( '@stdlib/blas/ext/base/zreplicate' );
import zsum = require( '@stdlib/blas/ext/base/zsum' );
import zsumkbn = require( '@stdlib/blas/ext/base/zsumkbn' );
import zunitspace = require( '@stdlib/blas/ext/base/zunitspace' );
Expand Down Expand Up @@ -9943,6 +9944,37 @@ interface Namespace {
*/
zoneTo: typeof zoneTo;

/**
* Replicates each element in a double-precision complex floating-point strided array a specified number of times.
*
* @param N - number of indexed elements
* @param k - number of times to replicate each element
* @param x - input array
* @param strideX - stride length for `x`
* @param out - output array
* @param strideOut - stride length for `out`
* @returns output array
*
* @example
* var Complex128Array = require( '@stdlib/array/complex128' );
*
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
* var out = new Complex128Array( 6 );
*
* ns.zreplicate( x.length, 2, x, 1, out, 1 );
* // out => <Complex128Array>[ 1.0, 2.0, 1.0, 2.0, 3.0, 4.0, 3.0, 4.0, 5.0, 6.0, 5.0, 6.0 ]
*
* @example
* var Complex128Array = require( '@stdlib/array/complex128' );
*
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
* var out = new Complex128Array( 6 );
*
* ns.zreplicate.ndarray( x.length, 2, x, 1, 0, out, 1, 0 );
* // out => <Complex128Array>[ 1.0, 2.0, 1.0, 2.0, 3.0, 4.0, 3.0, 4.0, 5.0, 6.0, 5.0, 6.0 ]
*/
zreplicate: typeof zreplicate;

/**
* Computes the sum of double-precision complex floating-point strided array elements.
*
Expand Down