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
12 changes: 6 additions & 6 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 @@ -1370,7 +1370,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns sum
*
* @example
Expand Down Expand Up @@ -1490,12 +1490,12 @@ interface Namespace {
gapxsum: typeof gapxsum;

/**
* Adds a constant to each strided array element and computes the sum using an improved Kahan–Babuška algorithm.
* Adds a scalar constant to each strided array element and computes the sum using an improved Kahan–Babuška algorithm.
*
* @param N - number of indexed elements
* @param alpha - constant
* @param alpha - scalar constant
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns sum
*
* @example
Expand Down Expand Up @@ -1636,9 +1636,9 @@ interface Namespace {
* @param N - number of indexed elements
* @param sum - initial sum
* @param x - input array
* @param strideX - `x` stride length
* @param strideX - stride length for `x`
* @param y - output array
* @param strideY - `y` stride length
* @param strideY - stride length for `y`
* @returns output array
*
* @example
Expand Down
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/stats/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - sorted input array
* @param stride - stride length
* @param strideX - stride length
* @returns maximum absolute value
*
* @example
Expand All @@ -555,7 +555,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - sorted input array
* @param stride - stride length
* @param strideX - stride length
* @returns maximum value
*
* @example
Expand Down Expand Up @@ -939,7 +939,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - sorted input array
* @param stride - stride length
* @param strideX - stride length
* @returns median value
*
* @example
Expand Down Expand Up @@ -1043,7 +1043,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - sorted input array
* @param stride - stride length
* @param strideX - stride length
* @returns minimum value
*
* @example
Expand Down Expand Up @@ -4261,7 +4261,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - sorted input array
* @param stride - stride length
* @param strideX - stride length
* @returns maximum value
*
* @example
Expand Down
Loading