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 8d378ea commit 68000e0Copy full SHA for 68000e0
README.md
@@ -1236,7 +1236,7 @@ function uflt12f(rawUflt12)
1236
// that Math.pow(2, k) is handled efficiently by
1237
// the JS interpreter! If this is time critical code,
1238
// you can replace by a suitable shift and divide.
1239
- var f_unscaled = sSign * mant1 * Math.pow(2, exp1 - 15);
+ var f_unscaled = mant1 * Math.pow(2, exp1 - 15);
1240
1241
return f_unscaled;
1242
}
0 commit comments