Skip to content

Commit 520a1fb

Browse files
authored
docs: update comments
Signed-off-by: Athan <[email protected]>
1 parent 5a20e0f commit 520a1fb

File tree

1 file changed

+2
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr/examples

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ var opts = {
2828

2929
var N = 3;
3030

31-
// Define 3x3 symmetric matrices:
31+
// Create N-by-N symmetric matrices:
3232
var A1 = ones( N*N, opts.dtype );
3333
var A2 = ones( N*N, opts.dtype );
3434

35+
// Create a random vector:
3536
var x = discreteUniform( N, -10.0, 10.0, opts );
3637

3738
dsyr( 'row-major', 'upper', 3, 1.0, x, 1, A1, 3 );

0 commit comments

Comments
 (0)