Floating point numbers are approximations of real numbers that can represent larger ranges than integers but use the same amount of memory, at the cost of lower precision.
0
votes
0answers
17 views
Display floating point by printf
I have problem with display floating point value using printf.
I'm trying display result of some math function, but I always get 0.00.
Could you help me and tell what I'm doing wrong?
My GNU AS ...
1
vote
1answer
30 views
L (long) postfix in boost erf(): when is needed and when not?
In the Boost implementation of erf function
in a header <boost/math/special_functions/erf.hpp> we have
result = z * 1.125 + z * 0.003379167095512573896158903121545171688L;
in the code ...
1
vote
3answers
56 views
Is there a way to set the Floating-Point Unit's rounding mode in Java?
I want to know how to round a floating-point number to a machine floating number(for example double).
The number "0.01111116" cannot be represented by machine floating point, in some rounding mode, ...
1
vote
2answers
47 views
Different rounding between assignment and printf
I have a program with two variables of type int.
int num;
int other_num;
/* change the values of num and other_num with conditional increments */
printf ("result = %f\n", (float) num / other_num);
...
0
votes
2answers
65 views
Convert Binary to Float
I'm trying to assign a float from a raw binary string, but I don't get what I would expect.
int main()
{
char recBuffer[] = {0x44, 0x42, 0x96, 0x12, 0x34, 0x56, 0x78};
float tempFloat;
...
1
vote
3answers
52 views
Return the mantissa as bits
I got a bit trouble with my c code. I am trying to extract the sign, exponent and the mantissa. So far it worked out for sign and exponent. The problem begins with mantissa.
For example, let's take ...
2
votes
5answers
52 views
Why here different results in java for long and double with same values
public static void main(String[] args) {
double firstDouble = 1.8d;
double secondDouble = 1.65d;
float firstFloat = 1.8f;
float secondFloat = 1.65f;
...
0
votes
1answer
42 views
How is floating point implemented in 32 and 64 bit processors?
I'm really confused with this. Can someone kindly explain to me how floating point is implemented with a 32 and 64 bit processor?
ThankYou
0
votes
3answers
88 views
Any risk of using float variables as loop counters and their fractional increment/decrement for non “==” conditions?
Are we safe to use floats as loop-counters and to increment/decrement them by fractional amounts at each iteration,like in the seemingly risk-free program below?Of course I know that using floats as ...
7
votes
2answers
120 views
Understanding of Guru of the Week #67: Double or Nothing
Recently, I was reading the post: Double or Nothing from GOTW by Herb Sutter
I am a little confused with the explanation of the following program:
int main()
{
double x = 1e8;
while( x ...
-5
votes
4answers
85 views
C/C++ floating point issue [duplicate]
I am struggling with a basic floating-point precision issue. Here is the problem:
double d = 0.1;
d += 0.1;
d += 0.1;
d == 0.3 ? std::cout << "yes" : std::cout << "no";
Run the code ...
0
votes
2answers
27 views
Accuracy of c_k = a + ( N + k ) * b
a, b are 32 bit floating point values, N is a 32 bit integer and k can take on values 0, 1, 2, ... M. Need to calculate c_k = a + ( N + k ) * b; The operations need to be 32 bit operations (not ...
3
votes
4answers
113 views
Comparing floats as string! can I? Is it valid approach?
In order to check if difference between two float numbers is 0.01 I do this
if ((float1 - float.Parse(someFloatAsStringFromXML).ToString(), ...
0
votes
1answer
49 views
Python calculations: floats and ints
In a long code of 600 lines I have one part of the code that calculates something weird.
idl = 0
print type(dl), dl
idl = int(dl*10)+1
print idl
This returns:
<type 'float'> 0.1
1
This ...
1
vote
3answers
56 views
c++ incorrect floating point arithmetic
For the following program:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
for (float a = 1.0; a < 10; a++)
cout << std::setprecision(30) ...
1
vote
3answers
111 views
How to convert a float to an int in modern C++
As strange as it may seems, I can't find how to cleanly convert a float to an int.
This technique
int int_value = (int)(float_value + 0.5);
triggers a
warning: use of old-style cast
in gcc.
...
0
votes
1answer
25 views
MySQL Float(7,2) to PHP Float
I am fetching (with PHP PDO) from MySQL a value (stored in signed Float(7,2) format).
Result
=====================
Database = 8.9 //correct value
PHP = 8.8999996185303 //fetch from PHP PDO
Sample ...
6
votes
1answer
76 views
Regarding float type precision
I can't understand why this
float f = Integer.MAX_VALUE;
System.out.println(Integer.MAX_VALUE);
System.out.println((int)f);
produces the same lines,
As well as why this does
Float f2 = ...
0
votes
2answers
33 views
TypeError deleting items in a nested dictionary
I have a nested dictionary like the following:
g = {
'a': {
1.55: {
'CD': [1.55, 12],
'LM': [1.55, 12],
},
1.45: {
'AF': [1.45, 15],
...
0
votes
4answers
41 views
Specify floating point number accuracy in NSString
I'm trying to specify the accuracy of my floating pointer number in my NSString but I keep on getting this error:
Format specifies type 'double' but the argument has type 'NSString *'
Here is my ...
6
votes
1answer
105 views
What's the most efficient way to run cross-platform, deterministic simulations in Haskell?
My goal is to run a simulation that requires non-integral numbers across different machines that might have a varying CPU architectures and OSes. The main priority is that given the same initial ...
0
votes
3answers
122 views
How do I compare floating point numbers
Please forgive the obvious "I should probably already know this" element to the question but I'm not seeing a method that I would run the division side of this evaluation through, to get the result to ...
1
vote
1answer
58 views
Java: Should I use float or Float? [duplicate]
My colleague told me that I should use float whenever possible to reduce the object creation and increase the performance. Java silently converts float to Float (this needs some computational power) ...
1
vote
0answers
51 views
+50
slower to mix logical variables with double?
I have 0-1 valued vectors that I need to do some matrix operations on. They are not very sparse (only half of the values are 0) but saving them as a logical variable instead of double saves 8 times ...
3
votes
0answers
67 views
Precise definition of float string formatting?
Is the following behavior defined in Python's documentation (Python 2.7)?
>>> '{:20}'.format(1e10)
' 10000000000.0'
>>> ...
0
votes
3answers
49 views
Converting NSString to float
I am getting a NSString from user inputs that comes to me as something like this: $10,000.00
I have a method that strips the $ off:
- (NSString*) stripDollarSign : (NSString*) stringToStrip {
...
1
vote
0answers
39 views
Locale independed float input and boost::program_options/istringstream
I've developed a small application which waits for float values input through command line/boost::program_options .
Also some parts of the application use std::stringstream for formatting floats with ...
1
vote
2answers
88 views
How to get the opposite side of round()/floor() in C?
I have double a=1234.5678, now I can get 1234 by floor(a), but how do I get 0.5678?
I know I can just subtract a-floor(a), but is there a function in the runtime library?
5
votes
6answers
276 views
Two General CS Questions [duplicate]
When comparing two "real" numbers for equality, why should I not use the == operator, and what should I use instead?
What is the difference between coersion and casting? It is my general assumption ...
0
votes
1answer
32 views
How to set output precision to float in c
How to set a precision of mantissa in C?
I want my program to print exactly 6 digits after the dot.
I tried using %2.6le to indicate that I want 6 digits, but then the program prints values like
...
1
vote
2answers
40 views
PHP Convert String into Float/Double
I have list of string (size in bytes), I read those from file. Let say one of the string is 2968789218, but when I convert it to float it become 2.00.
This is my code so far :
$string = ...
3
votes
2answers
58 views
Sleeping for certain numbers lasts forever in Linux bash
I'm writing a bash script in Ubuntu 13.04 that requires to sleep a specific number of seconds passed by parameter.
I've made sure that sleep allows floating point numbers looking in the documentation:
...
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
2answers
70 views
Floating point - NaN
I am working on a research project on java in which some tough calculations have to be done. However I am done with most part but stuck at a point.. I have to calculate the following :
(2.1-2.3) ...
2
votes
6answers
104 views
Is it safe to cast a float with value 0.0f to boolean?
I know that due to precision errors, a float varibale should be checked to equal a value always with some tolerance. But what's is that even the case if I manually set the float variable to 0.0f?
For ...
3
votes
1answer
58 views
Why does MSVS not optimize away +0, insted it turns it into a denormalized float?
This question demonstrates a very interesting phenomenon: denormalized floats slow down the code more than an order of magnitude.
The behavior is well explained in the accepted answer. However, there ...
2
votes
2answers
62 views
Does Excel's Worksheet Comparison Operator Give Inconsistent Results?
Consider the following. Place =400000000000000/3 in a cell, say "A1". Excel displays 133333333333333.0000. The precision is zero digits to the right of the decimal point because, apparently, Excel's ...
6
votes
2answers
132 views
more efficient way of flooring doubles to get array indices
I have double x, and double y. I need to turn that into int boxnum, which is defined as the (floored) index in which (x,y) falls in the WIDTH x HEIGHT grid with squares of size BOX_SIZE. Coordinates ...
-1
votes
1answer
69 views
Floating Point addition using integer operations
I am writing code for enumerating floating point addition in C++ using integer addition and shifts for some homework. I have googled the topic and I am able to add floating point numbers by adjusting ...
0
votes
4answers
43 views
How to convert float value to integer in php?
I want to convert float value (Eg:1.0000124668092E+14) to Integer in php,what is the best method for this in php.output should be "100001246680920"
-4
votes
0answers
35 views
Why is 0.1 + 0.2 !=== 0.3 ? (Javascript) [duplicate]
I don't understand floating point rounding errors - for example, why is 0.1 + 0.2 actually 0.30000000000001 and not 0.3 exactly?
3
votes
3answers
104 views
Stealing bits from an IEEE 754 double
What are the effects on floating-point math likely to be if the least-significant bit(s) of the significand is(/are) set to a random value?
Explanation:
The language PicoLisp allocates all values ...
0
votes
1answer
33 views
Data type mismatch in fortran
I've written a rudimentary algorithm in Fortran 95 to calculate the gradient of a function (an example of which is prescribed in the code) using central differences augmented with a procedure known as ...
-1
votes
3answers
49 views
Floatting points issue [closed]
I have taken two UITextFields & one label to get the result of the float value inserted in the textfields. This is the code which I have done.
Here issue starts when I initially takes textfields ...
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 ...
0
votes
2answers
99 views
Is casting float to int inside processor in C [duplicate]
I'm interested in how the compiler does to cast a float into an int by instructions like :
float x_f = 3.1415
int x = (int)x_f;
Especially talking about speed. Is it super-fast like ...
0
votes
3answers
36 views
How to convert Exponentials to Decimals in PHP
I have a string like this:
9.018E-14
Now I want to convert to this to the normal decimal numbers.
0
votes
4answers
72 views
Rounding a number to a smaller or bigger size with the same ratio
I don't know how to describe it very well (so I can't look it up) but I need help. Lets say I have 100 out of 0 to 200, how do I ratio the number to 0 to 100 so it would be like 50? Simply ratio-ing ...
1
vote
1answer
81 views
Is there any way to make sure the floating point arithmetic result the same in both linux and windows
My programe runs both in linux and windows, I have to make sure the floating point arithmetic get the same result in different OS.
Here is the code:
for (int i = 0; i < 100000; ++i)
{
float ...
0
votes
0answers
68 views
Rounding floats in Python
I am receiving the following error:
line 46, in train
deltaWeight = 0.1 * ((self.testOutputs[i][0] - self.outputUnits[0]) ** 2) OverflowError: (34, 'Numerical result out
of range')
I've ...





