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
29 changes: 27 additions & 2 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 @@ -106,6 +106,7 @@ import gapxsumkbn2 = require( '@stdlib/blas/ext/base/gapxsumkbn2' );
import gapxsumors = require( '@stdlib/blas/ext/base/gapxsumors' );
import gapxsumpw = require( '@stdlib/blas/ext/base/gapxsumpw' );
import gasumpw = require( '@stdlib/blas/ext/base/gasumpw' );
import gaxpb = require( '@stdlib/blas/ext/base/gaxpb' );
import gcartesianPower = require( '@stdlib/blas/ext/base/gcartesian-power' );
import gcartesianSquare = require( '@stdlib/blas/ext/base/gcartesian-square' );
import gcircshift = require( '@stdlib/blas/ext/base/gcircshift' );
Expand Down Expand Up @@ -298,7 +299,7 @@ interface Namespace {
*
* ## Notes
*
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index).
* - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored.
*
* @param order - storage layout
Expand Down Expand Up @@ -2795,6 +2796,30 @@ interface Namespace {
*/
gasumpw: typeof gasumpw;

/**
* Multiplies each element in a strided array by a scalar constant and adds a scalar constant to each result.
*
* @param N - number of indexed elements
* @param alpha - first scalar constant
* @param beta - second scalar constant
* @param x - input array
* @param strideX - stride length
* @returns `x`
*
* @example
* var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ];
*
* ns.gaxpb( x.length, 5.0, 3.0, x, 1 );
* // x => [ -7.0, 8.0, 18.0, -22.0, 23.0, 3.0, -2.0, -12.0 ]
*
* @example
* var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ];
*
* ns.gaxpb.ndarray( x.length, 5.0, 3.0, x, 1, 0 );
* // x => [ -7.0, 8.0, 18.0, -22.0, 23.0, 3.0, -2.0, -12.0 ]
*/
gaxpb: typeof gaxpb;

/**
* Computes the Cartesian power for a strided array.
*
Expand Down Expand Up @@ -5826,7 +5851,7 @@ interface Namespace {
*
* ## Notes
*
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index).
* - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored.
*
* @param order - storage layout
Expand Down