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 fe646a9 commit bef0241Copy full SHA for bef0241
lib/node_modules/@stdlib/math/base/special/expf/examples/index.js
@@ -22,12 +22,12 @@ var uniform = require( '@stdlib/random/array/uniform' );
22
var expf = require( './../lib' );
23
24
var opts = {
25
- 'dtype': 'float32'
+ 'dtype': 'float32'
26
};
27
28
var x = uniform( 100, -50.0, 50.0, opts );
29
var i;
30
31
for ( i = 0; i < 100; i++ ) {
32
- console.log( 'e^%f = %f', x, expf( x[ i ] ) );
+ console.log( 'e^%f = %f', x, expf( x[ i ] ) );
33
}
0 commit comments