Skip to content

Commit c9ccdaf

Browse files
authored
chore: use Float64Array
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent b88b604 commit c9ccdaf

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/normal/quantile/benchmark

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/normal/quantile/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bench( pkg, function benchmark( b ) {
4040
var i;
4141

4242
len = 100;
43-
p = new Array( len );
43+
p = new Float64Array( len );
4444
mu = new Float64Array( len );
4545
sigma = new Float64Array( len );
4646
for ( i = 0; i < len; i++ ) {

0 commit comments

Comments
 (0)