python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is it guaranteed that division by power of 10 gives accurate result in Floating-point arithmetic standard)?
I found out that 9 * 0.0001 = 0.0009000000000000001, but 9 / 10_000 = 0.0009
Is it guaranteed that when you divide by power of 10 you will receive exact value (by IEEE 754-2019: IEEE Standard for Floa...
Andrii Biletskyi
Votes: 0
Answers: 1
How to decode 16-bit signed binary file in IEEE754 standard
I have a file format called .ogpr (openGPR, a dead format used for Ground Radar data), I'm trying to read this file and convert it into a matrix using Matlab(R).
In the first part of file there is a J...
stealbi
Votes: 0
Answers: 1
Floating Point numbers on VAX machine
I have the source code in RTL/2 program languange of an old application running on a VAX machine.
Unfortunately I don't have the possibility\ability to re-compile the application.
I have to change so...
Andak
Votes: 0
Answers: 1
strength reduction leading to different outcomes with respect to signaling NaNs
gcc strength-reduces floating-point expressions such as x * 1.0 into the identity function. This is correct if x is a finite or infinite value, but if x is a signaling NaN, x * 1.0 will be a "qui...
David Monniaux
Votes: 0
Answers: 0