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 191cc49 commit c495b97Copy full SHA for c495b97
lib/node_modules/@stdlib/blas/ext/base/sapx/README.md
@@ -130,8 +130,7 @@ var uniform = require( '@stdlib/random/base/uniform' ).factory;
130
var filledarrayBy = require( '@stdlib/array/filled-by' );
131
var sapx = require( '@stdlib/blas/ext/base/sapx' );
132
133
-var rand = uniform( -100.0, 100.0 );
134
-var x = filledarrayBy( 10, 'float32', rand );
+var x = filledarrayBy( 10, 'float32', uniform( -100.0, 100.0 ) );
135
console.log( x );
136
137
sapx( x.length, 5.0, x, 1 );
0 commit comments