File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/blas Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
2020
2121# dsdot
2222
23- > Calculate the dot product of two one-dimensional single-precision floating-point ndarrays.
23+ > Calculate the dot product of two one-dimensional single-precision floating-point ndarrays with double-precision accumulation .
2424
2525<section class =" intro " >
2626
@@ -53,7 +53,7 @@ var dsdot = require( '@stdlib/blas/base/ndarray/dsdot' );
5353
5454#### dsdot( arrays )
5555
56- Computes the dot product of two one-dimensional single-precision floating-point ndarrays.
56+ Computes the dot product of two one-dimensional single-precision floating-point ndarrays with double-precision accumulation .
5757
5858``` javascript
5959var Float32Vector = require ( ' @stdlib/ndarray/vector/float32' );
Original file line number Diff line number Diff line change 33 Computes the dot product of two one-dimensional single-precision floating-
44 point ndarrays with extended accumulation.
55
6- If provided an empty input ndarray, the function returns `0.0`.
6+ If provided an empty input ndarray, the function returns the scalar
7+ constant.
78
89 Parameters
910 ----------
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ interface Routine {
2929 * @param alpha - scalar constant
3030 * @param x - input array
3131 * @param strideX - stride length
32- * @returns input array
32+ * @returns `x`
3333 *
3434 * @example
3535 * var Float64Array = require( '@stdlib/array/float64' );
@@ -49,7 +49,7 @@ interface Routine {
4949 * @param x - input array
5050 * @param strideX - stride length
5151 * @param offsetX - starting index
52- * @returns input array
52+ * @returns `x`
5353 *
5454 * @example
5555 * var Float64Array = require( '@stdlib/array/float64' );
@@ -69,7 +69,7 @@ interface Routine {
6969* @param alpha - scalar constant
7070* @param x - input array
7171* @param strideX - stride length
72- * @returns input array
72+ * @returns `x`
7373*
7474* @example
7575* var Float64Array = require( '@stdlib/array/float64' );
Original file line number Diff line number Diff line change 1818
1919'use strict' ;
2020
21- // VARIABLES //
21+ // MODULES //
2222
2323var stride2offset = require ( '@stdlib/strided/base/stride2offset' ) ;
2424var ndarray = require ( './ndarray.js' ) ;
You can’t perform that action at this time.
0 commit comments