diff --git a/lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts index a1a76b8a0b5b..87c842ac2f0c 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts @@ -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' ); @@ -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 @@ -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. * @@ -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