We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58795df commit 6643700Copy full SHA for 6643700
lib/node_modules/@stdlib/blas/base/zdotc/examples/index.js
@@ -37,5 +37,6 @@ console.log( y.toString() );
37
var z = zdotc( x.length, x, 1, y, 1 );
38
console.log( z );
39
40
+// Perform dot product of x and y using alternative indexing semantics:
41
z = zdotc.ndarray( x.length, x, 1, 0, y, 1, 0 );
42
0 commit comments