You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/ndarray/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,7 @@ The namespace exposes the following APIs:
67
67
- <spanclass="signature">[`saxpy( arrays )`][@stdlib/blas/base/ndarray/saxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional single-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional single-precision floating-point ndarray `y`.</span>
68
68
- <spanclass="signature">[`scopy( arrays )`][@stdlib/blas/base/ndarray/scopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional single-precision floating-point ndarray `x` into a one-dimensional single-precision floating-point ndarray `y`.</span>
69
69
- <spanclass="signature">[`sdot( arrays )`][@stdlib/blas/base/ndarray/sdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional single-precision floating-point ndarrays.</span>
70
+
- <spanclass="signature">[`snrm2( arrays )`][@stdlib/blas/base/ndarray/snrm2]</span><spanclass="delimiter">: </span><spanclass="description">compute the L2-norm of a one-dimensional single-precision floating-point ndarray.</span>
70
71
- <spanclass="signature">[`sscal( arrays )`][@stdlib/blas/base/ndarray/sscal]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional single-precision floating-point ndarray by a scalar constant.</span>
71
72
- <spanclass="signature">[`sswap( arrays )`][@stdlib/blas/base/ndarray/sswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two one-dimensional single-precision floating-point ndarrays.</span>
72
73
- <spanclass="signature">[`zaxpy( arrays )`][@stdlib/blas/base/ndarray/zaxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional double-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision complex floating-point ndarray `y`.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,6 +129,7 @@ var o = ns;
129
129
- <spanclass="signature">[`gapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum using ordinary recursive summation.</span>
130
130
- <spanclass="signature">[`gapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumpw]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum using pairwise summation.</span>
131
131
- <spanclass="signature">[`gasumpw( N, x, strideX )`][@stdlib/blas/ext/base/gasumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values (_L1_ norm) of strided array elements using pairwise summation.</span>
132
+
- <spanclass="signature">[`gaxpb( N, alpha, beta, x, strideX )`][@stdlib/blas/ext/base/gaxpb]</span><spanclass="delimiter">: </span><spanclass="description">multiply each element in a strided array by a scalar constant and add a scalar constant to each result.</span>
132
133
- <spanclass="signature">[`gcartesianPower( order, N, k, x, strideX, out, LDO )`][@stdlib/blas/ext/base/gcartesian-power]</span><spanclass="delimiter">: </span><spanclass="description">compute the Cartesian power for a strided array.</span>
133
134
- <spanclass="signature">[`gcartesianSquare( order, N, x, strideX, out, LDO )`][@stdlib/blas/ext/base/gcartesian-square]</span><spanclass="delimiter">: </span><spanclass="description">compute the Cartesian square for a strided array.</span>
134
135
- <spanclass="signature">[`gcircshift( N, k, x, strideX )`][@stdlib/blas/ext/base/gcircshift]</span><spanclass="delimiter">: </span><spanclass="description">circularly shift the elements of a strided array by a specified number of positions.</span>
- <spanclass="signature">[`dispatch( fcns, types, data, nargs, nin, nout )`][@stdlib/ndarray/dispatch]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray function interface which performs multiple dispatch.</span>
283
+
- <spanclass="signature">[`falses( shape[, options] )`][@stdlib/ndarray/falses]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray filled with `false` values and having a specified shape and data type.</span>
283
284
- <spanclass="signature">[`forEach( x, fcn[, thisArg] )`][@stdlib/ndarray/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invoke a callback function once for each ndarray element.</span>
284
285
- <spanclass="signature">[`orders()`][@stdlib/ndarray/orders]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray orders.</span>
286
+
- <spanclass="signature">[`trues( shape[, options] )`][@stdlib/ndarray/trues]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray filled with `true` values and having a specified shape and data type.</span>
0 commit comments