Skip to content

Commit d44a1de

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 4b77044 commit d44a1de

File tree

1 file changed

+2
-0
lines changed
  • lib/node_modules/@stdlib/blas/base/zdotc/lib

1 file changed

+2
-0
lines changed

lib/node_modules/@stdlib/blas/base/zdotc/lib/zdotc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ var ndarray = require( './ndarray.js' );
4242
*
4343
* var x = new Complex128Array( [ 7.0, -8.0, -1.0, -9.0 ] );
4444
* var y = new Complex128Array( [ 6.0, -6.0, -9.0, 5.0 ] );
45+
4546
* var z = zdotc( x.length, x, 1, y, 1 );
47+
* // z => <Complex128>[ 54.0, -80.0 ]
4648
*/
4749
function zdotc( N, x, strideX, y, strideY ) {
4850
var ix;

0 commit comments

Comments
 (0)