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 c495b97 commit 2d73d20Copy full SHA for 2d73d20
lib/node_modules/@stdlib/blas/ext/base/sapx/examples/index.js
@@ -22,9 +22,7 @@ var uniform = require( '@stdlib/random/base/uniform' ).factory;
22
var filledarrayBy = require( '@stdlib/array/filled-by' );
23
var sapx = require( './../lib' );
24
25
-var rand = uniform( -100.0, 100.0 );
26
-
27
-var x = filledarrayBy( 10, 'float32', rand );
+var x = filledarrayBy( 10, 'float32', uniform( -100.0, 100.0 ) );
28
29
console.log( x );
30
0 commit comments