Skip to content

Commit a4a8183

Browse files
authored
chore: update examples
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 30e624d commit a4a8183

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ var opts = {
2626
};
2727

2828
var N = 3;
29-
var A = [ 1, 2, 0, 3, 4, 5 ];
29+
var A = [ 1, 2, 3, 4, 5, 0 ];
3030

3131
var x = discreteUniform( N, -10, 10, opts );
3232
var y = discreteUniform( N, -10, 10, opts );
3333

34-
dsbmv.ndarray( 'upper', N, 1, 1.0, A, 1, 2, 0, x, 1, 0, 1.0, y, 1, 0 );
34+
dsbmv.ndarray( 'upper', N, 1, 1.0, A, 2, 1, 0, x, 1, 0, 1.0, y, 1, 0 );
3535
console.log( y );

0 commit comments

Comments
 (0)