Skip to content
Merged
Show file tree
Hide file tree
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
28 changes: 28 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

import dapxsum = require( '@stdlib/blas/ext/base/dapxsum' );
import dapxsumkbn = require( '@stdlib/blas/ext/base/dapxsumkbn' );
import dapxsumors = require( '@stdlib/blas/ext/base/dapxsumors' );
import dapxsumpw = require( '@stdlib/blas/ext/base/dapxsumpw' );
import dnansumpw = require( '@stdlib/blas/ext/base/dnansumpw' );

Expand Down Expand Up @@ -83,6 +84,33 @@ interface Namespace {
*/
dapxsumkbn: typeof dapxsumkbn;

/**
* Adds a scalar constant to each double-precision floating-point strided array element and computes the sum using ordinary recursive summation.
*
* @param N - number of indexed elements
* @param alpha - scalar constant
* @param x - input array
* @param strideX - stride length
* @returns sum
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
*
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
*
* var v = ns.dapxsumors( x.length, 5.0, x, 1 );
* // returns 16.0
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
*
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
*
* var v = ns.dapxsumors.ndarray( x.length, 5.0, x, 1, 0 );
* // returns 16.0
*/
dapxsumors: typeof dapxsumors;

/**
* Adds a scalar constant to each double-precision floating-point strided array element and computes the sum using pairwise summation.
*
Expand Down
12 changes: 6 additions & 6 deletions lib/node_modules/@stdlib/stats/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ interface Namespace {
* @param N - number of indexed elements
* @param correction - degrees of freedom adjustment
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns standard deviation
*
* @example
Expand All @@ -956,7 +956,7 @@ interface Namespace {
* @param N - number of indexed elements
* @param correction - degrees of freedom adjustment
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns standard deviation
*
* @example
Expand Down Expand Up @@ -1064,7 +1064,7 @@ interface Namespace {
* @param N - number of indexed elements
* @param correction - degrees of freedom adjustment
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns variance
*
* @example
Expand Down Expand Up @@ -1837,7 +1837,7 @@ interface Namespace {
* @param N - number of indexed elements
* @param correction - degrees of freedom adjustment
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns variance
*
* @example
Expand Down Expand Up @@ -4231,7 +4231,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns arithmetic mean
*
* @example
Expand All @@ -4257,7 +4257,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns arithmetic mean
*
* @example
Expand Down