IEEE 754 is the Institute of Electrical and Electronics Engineers standard for floating-point computation, and is the most common & widely used implementation thereof.
0
votes
1answer
50 views
Parse HEX float
I have integer, for example, 4060.
How I can get HEX float (\x34\xC8\x7D\x45) from it?
JS hasn't float type, so I don't know how to do this conversion.
Thank you.
0
votes
1answer
10 views
what does 754 mean in IEEE 754 floating point number?
There are lots of IEEE standard.and almost all languages guarantee to implement IEEE 754 binary floating-point numbers.
-3
votes
3answers
84 views
Is it possible to round-trip a floating point double to two decimal integers with fidelity?
I am trying to discern whether it is possible to decompose a double precision IEEE floating point value into to two integers and recompose them later with full fidelity. Imagine something like this:
...
1
vote
3answers
87 views
Why does exponent fail? [closed]
Conventionally 1e3 means 10**3.
>>> 1e3
1000.0
>>> 10**3
1000
Similar case is exp(3) compared to e**3.
>>> exp(3)
20.085536923187668
>>> e**3
20.085536923187664
...
0
votes
0answers
33 views
Opencl with jocl: same computation rules for cpu and gpu
I'm using jocl to apply some trigonometric functions on elements of a float-array. While doing same code on both cpu and gpu at the same time, results vary minorly on the 0.000x digits and it is ...
0
votes
1answer
51 views
Understanding of Rounding IEEE Floating PointNumber
I am writing a rounding scheme for a Floating point adder.I don't know what happens for a few values, I tried reading the manual but can't figure it out. To code , I can think of if .. else or case ...
4
votes
1answer
44 views
Is there a neutral element in IEEE754 with regards to addition
Consider the following code snippet
double id = ?;
double res;
long unsigned *res_u = (long unsigned*)&res;
long unsigned i;
for (i = 0; i < (long unsigned)-1; i++){
double *d1 = ...
6
votes
4answers
134 views
How to get Python division by -0.0 and 0.0 to result in -Inf and Inf, respectively?
I have a situation where it is reasonable to have a division by 0.0 or by -0.0 where I would expect to see +Inf and -Inf, respectively, as results. It seems that Python enjoys throwing a
...
0
votes
1answer
75 views
IEEE 754 floating point
I am working on a program that needs to convert a 32-bit number into a decimal number. The number that I get from input is a 32 bit number represented as floating point. The first bit is the sign, the ...
2
votes
2answers
134 views
PLC Structured text, convert decimal to real(float). Not getting the value I expect. (IEEE-754)
I have a hardware that is communicating with the PLC over Profibus DP, that sends
me 4 bytes of data in hex that is "44 79 FF FF" and in the PLC program I have declared
a BYTE array for this input ...
0
votes
2answers
37 views
Javascript: Need workaround for automatic rounding
I have a javascript calculation to do:
var temp = ((1 + 0.07)^(1/12))-1;
The actual answer for this is:
0.00565414539
On the ^(1/12) (0.833..) you get 1.00565414539
However, Javascript ...
2
votes
1answer
69 views
Ruby convert 64 bit IEEE 754 hexadecimal to double
I need to output a hex data stream from an IMU into lat long and height values.
The data comes in as double precision hex strings and I need to output them into decimal values.
I tried several pack ...
1
vote
0answers
74 views
Is it possible to make isnan() work in gfortran -O3 -ffast-math?
I would like to compile a program with gfortran and -O3 -ffast-math enabled, since it gives a nice performance boost. I was rather confused, that gfortran's isnan() catched some NaN's but not all of ...
0
votes
3answers
75 views
data type: float, long conversion in C
I was reading C primer plus, in chapter 3, data type, the author says:
If you take the bit pattern that represents the float number 256.0 and interpret it as a long value, you get 113246208.
I don't ...
2
votes
2answers
55 views
Z3: Floating point FMA semantics
Z3 returns a satisfying model for this benchmark: http://rise4fun.com/Z3/Bnv5m
However, the query is essentially asserting that a*b+0 is equivalent to a*b using the FMA instruction, which I believe ...
1
vote
1answer
56 views
double-double implementation resilient to FPU rounding mode
Context: double-double arithmetic
“Double-double” is a representation of numbers as the sum of two double-precision numbers without overlap in the significands. This representation takes advantage of ...
0
votes
0answers
39 views
Rounding to the nearest?Confusion.. Please help. Assembly
The floating point used here is single precision and the format is based in Microchip
1. EXponent (8bits)
2. AFP2 (8 bits = 1 Sign bit and the MSB of Mantissa)
3. AFP1 (8 bits = middle byte of ...
85
votes
3answers
8k views
PHP Type-Juggling and (strict) Greater/Lesser Than Comparisons
PHP is famous for its type-juggling. I must admit it puzzles me and I'm having a hard time to find out basic logical/fundamental things in comparisons.
For example: If $a > $b is true and $b > ...
7
votes
2answers
53 views
Why is realmin > eps(0)?
realmin "returns the smallest positive normalized floating point number in IEEE double precision". eps(X) "is the positive distance from ABS(X) to the
next larger in mangitude floating point number of ...
7
votes
4answers
167 views
VC++ optimisations break comparisons with NaN?
IEEE754 requires NaNs to be unordered; less than, greater than, equal etc. should all return false when one or both operands are NaN.
The sample below yields the correct F F F F F T as expected when ...
0
votes
0answers
132 views
IEEE floating point conversion 32 bit
I am first learning conversion from decimal numbers to the IEEE 32 float standard and am confused at the moment because I see several lecture slides and examples from universities who do it one way ...
3
votes
1answer
110 views
Floating point accuracy again
Yesterday I asked a question about why I was losing accuracy in a floating point arithmetic. I received an answer about how it was due to intermediate results being held in x87 registers. This was ...
6
votes
1answer
130 views
Accuracy of floating point arithmetic
I'm having trouble understanding the output of this program
int main()
{
double x = 1.8939201459282359e-308;
double y = 4.9406564584124654e-324;
printf("%23.16e\n", 1.6*y);
...
0
votes
0answers
70 views
IEEE 754 to integer conversion - floor, ceil algorithm
I'm interested in algorithm for converting floating point number to integer. First idea I had was using floor().
int integer = (float) 3.14f;
would turn into
int integer = floor(3.14f);
Not ...
0
votes
3answers
106 views
Explain 1 - 3*(4/3 - 1) = 2.2204e-16 in Matlab
I am trying to understand the double precision numbers in Matlab. Why is this 1 - 3*(4/3 - 1) not equal to zero?
7
votes
2answers
134 views
Get next smallest Double number
As part of a unit test, I need to test some boundary conditions. One method accepts a System.Double argument.
Is there a way to get the next-smallest double value? (i.e. decrement the mantissa by 1 ...
5
votes
3answers
188 views
C++ Portable Floating-Point Bit Representation?
Is there a C++ Standards compliant way to determining the structure of a 'float', 'double', and 'long double' at compile-time ( or run-time, as an alternative )?
If I assume std::numeric_limits< T ...
38
votes
7answers
1k views
In binary notation, what is the meaning of the digits after the radix point “.”?
I have this example on how to convert from a base 10 number to IEEE 754 float representation
Number: 45.25 (base 10) = 101101.01 (base 2) Sign: 0
Normalized form N = 1.0110101 * 2^5
Exponent esp = 5 ...
2
votes
6answers
117 views
Can I calculate error introduced by doubles?
Suppose I have an irrational number like \sqrt{3}. As it is irrational, it has no decimal representation. So when you try to express it with a IEEE 754 double, you will introduce an error.
A decimal ...
0
votes
1answer
462 views
Convert 32 bit binary number to decimal
someone who can help me I have the following drawback,
to enter a negative decimal binary in this case enter -20 (11000001101000000000000000000000) throws me the following error:
Exception in ...
1
vote
3answers
165 views
What is long double on x86-64?
Someone told me that:
Under x86-64, FP arithmetic is done with SSE, and therefore long double is 64 bits.
But in the x86-64 ABI it says that:
C type | sizeof | alignment | AMD64 ...
1
vote
3answers
278 views
Range of representable values of 32-bit, 64-bit and 80-bit float IEEE-754?
In the C++ standard it says of floating literals:
If the scaled value is not in the range of representable values for its type, the program is ill-formed.
The scaled value is the significant ...
1
vote
2answers
127 views
Is SSE floating-point arithmetic reproducible?
The x87 FPU is notable for using an internal 80-bit precision mode, which often leads to unexpected and unreproducible results across compilers and machines. In my search for reproducible ...
1
vote
1answer
382 views
Denormalized Numbers - IEEE 754 Floating Point
So I'm trying to learn more about Denormalized numbers as defined in the IEEE 754 standard for Floating Point numbers. I've already read several articles thanks to Google search results, and I've gone ...
2
votes
1answer
82 views
How do I access rounding modes defined in IEEE 754 in python?
I have the need to compute exactly in single precision floating points in Python.
The options I've tried are decimal.Decimal and numpy.float32. However Decimal is not based on IEEE 754, and float32 ...
1
vote
1answer
209 views
Getting IEEE 754 (single precision) representation of (decimal) float in Java
I'm sure there's something I'm missing. I use this code:
int bitsVal = Float.floatToIntBits(f);
String bitsString = Integer.toString(bitsVal, 2);
This seems to work fine for positive numbers. I ...
1
vote
1answer
195 views
Can double's overflow to negative values?
Hi I am using the g++ compiler and am experiencing (what I think) is underflow of doubles, is this possible and if so how is the behaviour defined
I have uploaded the csv format of the covariance ...
18
votes
2answers
369 views
Coercing floating-point to be deterministic in .NET?
I've been reading a lot about floating-point determinism in .NET, i.e. ensuring that the same code with the same inputs will give the same results across different machines. Since .NET lacks options ...
0
votes
0answers
32 views
ieee-754 format using leftshift function
function leftshift($value1,$value2)
{
$format = '%0' . (PHP_INT_SIZE * 8) . "b\n";
$places = 16;
$res = $value1 << $places;
return (sprintf($format,$res|$value2));
...
-1
votes
2answers
128 views
Analyzing IEEE 754 bit patterns
I'm working on an assignment but I'm stuck. For some reason I can't get this outcome:
byte order: little-endian
> FFFFFFFF
0xFFFFFFFF
signBit 1, expBits 255, fractBits 0x007FFFFF
QNaN
> 3
...
31
votes
3answers
1k views
Is a float guaranteed to be preserved when transported through a double in C/C++?
Assuming IEEE-754 conformance, is a float guaranteed to be preserved when transported through a double?
In other words, will the following assert always be satisfied?
int main()
{
float f = ...
1
vote
1answer
66 views
IEEE representation of binary number
I came across this problem that I am not able to solve.
The IEEE short floating point representation of the binary number 1001.1011 is
And the answer is given as 1 00000011 00110110000000000000000.
...
3
votes
2answers
112 views
Why does division by zero in IEEE754 standard results in Infinite value?
I'm just curious, why in IEEE-754 any non zero float number divided by zero results in infinite value? It's a nonsense from the mathematical perspective. So I think that correct result for this ...
3
votes
3answers
255 views
Python math module logarithm functions [duplicate]
Possible Duplicate:
Inaccurate Logarithm in Python
Why are the math.log10(x) and math.log(x,10) results different?
In [1]: from math import *
In [2]: log10(1000)
Out[2]: 3.0
In [3]: ...
3
votes
1answer
216 views
Math.pow with negative numbers and non-integer powers
The ECMAScript specification for Math.pow has the following peculiar rule:
If x < 0 and x is finite and y is finite and y is not an integer, the result is NaN.
...
0
votes
1answer
114 views
Citation graph tool
does anyone know a tool/app to make a citation graph?
Or some app that can make a graph with papers and their references, and bibliography of papers .
I was told, that ieee has one, but i didnt found ...
0
votes
0answers
58 views
fractions floating point number
What is the most efficient way to determine the significant places in a IEEE-754 64-bit floating-point number?
For example:
56.7899 --> 4
0.005 --> 3
-56.1 --> 1
768.0 --> 0
56.56000 --> 2
My ...
1
vote
2answers
106 views
Number Of Digits in Fractional Portion of Float/Double
I am trying to implement http://www.exploringbinary.com/correct-decimal-to-floating-point-using-big-integers/
I have read through it quite a few times and feel very comfortable with it. The first ...
2
votes
0answers
74 views
Interesting float bug in Calculator - why does this occur?
If you enter 1.0000000000000000000000000000001 in the Windows calculator, then repeatedly hit the factorial (n!) button, you get some odd results:
1.0000000000000000000000000000001 [n!]
1 ...
4
votes
2answers
260 views
Lua - packing IEEE754 single-precision floating-point numbers
I want to make a function in pure Lua that generates a fraction (23 bits), an exponent (8 bits), and a sign (1 bit) from a number, so that the number is approximately equal to math.ldexp(fraction, ...




