time-to-botec/js/node_modules/@stdlib/blas/sdot/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

30 lines
745 B
Plaintext

{{alias}}( x, y )
Computes the dot product of two single-precision floating-point vectors.
If provided empty vectors, the function returns `0.0`.
Parameters
----------
x: ndarray
First input array whose underlying data type is 'float32'.
y: ndarray
Second input array whose underlying data type is 'float32'.
Returns
-------
dot: number
The dot product.
Examples
--------
> var x = {{alias:@stdlib/ndarray/array}}( new {{alias:@stdlib/array/float32}}( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] ) );
> var y = {{alias:@stdlib/ndarray/array}}( new {{alias:@stdlib/array/float32}}( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] ) );
> {{alias}}( x, y )
-5.0
See Also
--------