Skip to content

Commit 6643700

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 58795df commit 6643700

File tree

1 file changed

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

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ console.log( y.toString() );
3737
var z = zdotc( x.length, x, 1, y, 1 );
3838
console.log( z );
3939

40+
// Perform dot product of x and y using alternative indexing semantics:
4041
z = zdotc.ndarray( x.length, x, 1, 0, y, 1, 0 );
4142
console.log( z );

0 commit comments

Comments
 (0)