Tagged Questions
float is a keyword in Java, C# and several other languages. It refers to a single-precision, floating-point number. float is also a cascading style-sheets (CSS) property that defines the side around which other elements will flow around the floated element.
86
votes
10answers
111k views
Python - Parse String to Float or Int
This should be simple - In python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31?
EDIT: I just wanted to know how to parse a ...
66
votes
8answers
2k views
In which order should floats be added to get the most precise result?
This was a question I was asked at my recent interview and I want to know (I don't actually remember the theory of the numerical analysis, so please help me :)
If we have some function, which ...
48
votes
6answers
1k views
Strange behavior when casting a float to int in C#
I have the following simple code :
int speed1 = (int)(6.2f * 10);
float tmp = 6.2f * 10;
int speed2 = (int)tmp;
speed1 and speed2 should have the same value, but in fact, I have :
speed1 = 61
...
37
votes
6answers
2k views
Using “double” as counter variables in loops
In a book I am currently reading, there is this excerpt:
You can also use a floating-point
value as a loop counter. Here's an
example of a for loop with this kind
of counter:
double ...
37
votes
7answers
5k views
How do you keep parents of floated elements from collapsing?
Although elements like <div>s normally grow to fit their contents, using the float property can cause a startling problem for CSS newbies: if floated elements have non-floated parent elements, ...
36
votes
9answers
27k views
Python decimal range() step value
Is there a way to step between 0 and 1 by 0.1? I thought I could do it like the following but it failed:
for i in range(0, 1, 0.1):
print i
Instead, it says that the step argument cannot be ...
31
votes
6answers
17k views
CSS floats - how do I keep them on one line?
Hey, I want to have two items on the same line using 'float: left' for the item on the left.
I have no problems achieving this alone. The problem is, I want the two items to stay on the same line ...
30
votes
8answers
48k views
python limiting floats to two decimal points
I want a to be rounded to 13.95
>>> a
13.949999999999999
>>> round(a, 2)
13.949999999999999
The round function does not work [the way I expect].
25
votes
1answer
445 views
casting result to float in method returning float changes result
I wanted to understand why this code prints False in .net 4.
I wanted to know what exactly what was going on with the cast.
The answer was not "floating point is inaccurate" or "don't do that".
...
24
votes
3answers
48k views
How to convert string into float in javascript?
I have a datagrid and I get 2 column's value by javascript. These fields are numeric and when fields have comma (ex. 554,20), I cant get the numbers after comma. I tried parseInt, parseFloat. How can ...
23
votes
10answers
7k views
Are doubles faster than floats in c#?
I'm writing an application which reads large arrays of floats and performs some simple operations with them. I'm using floats because I thought it'd be faster than doubles, but after doing some ...
21
votes
7answers
10k views
Internet Explorer 6 and 7: floated elements expand to 100% width when they contain a child element floated right. Is there a workaround?
I've got a parent div floated left, with two child divs that I need to float right.
The parent div should (if I understand the spec correctly) be as wide as needed to contain the child divs, and this ...
20
votes
6answers
1k views
numpy float: 10x slower than builtin in arithmetic operations?
EDIT:
I rerun the code under the Windows 7 x64 (Intel Core i7 930 @ 3.8GHz).
Again, the code is:
from datetime import datetime
import numpy as np
START_TIME = datetime.now()
# one of the ...
20
votes
8answers
6k views
Floating point vs integer calculations on modern hardware
I am doing some performance critical work in C++, and we are currently using integer calculations for problems that are inherently floating point because "its faster". This causes a whole lot of ...
20
votes
12answers
5k views
Should I use double or float?
What are the advantages and disadvantages of using one instead of the other in C++?
20
votes
7answers
27k views
C++ random float
How do I generate random floats in C++?
I thought I could take the integer rand and divide it by something, would that be adequate enough?
18
votes
4answers
14k views
CSS: wrap text around a bottom-right div?
Every time I try to do something seemingly-simple in CSS, it punches me in the gut and steals my lunch money :(
I've been looking at this for over an hour and haven't made a bit of progress...
I ...
16
votes
6answers
925 views
Is there a floating point value of x, for which x-x == 0 is false?
In most cases, I understand that a floating point comparison test should be implemented using over a range of values (abs(x-y) < epsilon), but does self subtraction imply that the result will be ...
16
votes
9answers
5k views
Difference between float and double
I know, i've read about the difference between double precision and single precision etc. But they should give the same results on most cases right ?
I was solving a problem on a programming contest ...
15
votes
5answers
599 views
C# float infinite loop
The following code in C# (.Net 3.5 SP1) is an infinite loop on my machine:
for (float i = 0; i < float.MaxValue; i++) ;
It reached the number 16777216.0 and 16777216.0 + 1 is evaluates to ...
15
votes
5answers
11k views
How can I make a float top with CSS?
I know that CSS only supports left and right values for the float property, but is there a technique to implement a floating top? I will try to explain. I have the following code:
<div ...
14
votes
2answers
595 views
Evil in the python decimal / float
I have a large amount of python code that tries to handle numbers with 4 decimal precision and I am stuck with python 2.4 for many reasons. The code does very simplistic math (its a credit management ...
13
votes
3answers
4k views
Best way to generate a random float in C#
What is the best way to generate a random float in C#?
Update: I want random floating point numbers from float.Minvalue to float.Maxvalue. I am using these numbers in unit testing of some ...
13
votes
10answers
5k views
“f” after number/float in Objective-C/C
I cannot find this in the Apple docs so: what does the "f" after the numbers here indicate? Is this from C or Objective-C? Is there any difference in not adding this to a constant number?
CGRect ...
13
votes
4answers
46k views
PHP String to Float
I am not familiar with PHP at all and had a quick question.
I have 2 variables @pricePerUnit and @invoicedUnits. Here's the code that is setting these to values:
$InvoicedUnits = ((string) ...
12
votes
4answers
468 views
What float value makes sprintf_s() produce “1.#QO”?
I have some (legacy embedded c) code which produces a .csv file by means of some sprintf calls. Occasionally I see values of 1.#QO. I've tried reproducing those values with conditions which should ...
12
votes
7answers
44k views
Rounding Number to 2 Decimal Places in C
How can I round a float (such as 37.777779) to two decimal places (37.78) in C?
12
votes
7answers
2k views
When to use a Float
Years ago I learned the hard way about precision problems with floats so I quit using them. However, I still run into code using floats and it make me cringe because I know some of the calculations ...
11
votes
1answer
161 views
size of double and float objects in a list are equal?
I am wondering if the size of float and double objects are equal from std::list point of view?
I've allocated 5-million Real(alias float or double) objects in a std::list and used Valgrind to monitor ...
11
votes
4answers
190 views
Hashing floating point values
Recently, I was curious how hash algorithms for floating points worked, so I looked at the source code for boost::hash_value. It turns out to be fairly complicated. The actual implementation loops ...
11
votes
7answers
1k views
double or float,which is faster?
i am reading "accelerated c++". i found one sentence which states "sometimes double is faster in execution than float in c++". After reading sentence i got confused about float and double working. ...
11
votes
4answers
766 views
Can “System.Math.Cos” return a (float)?
In C# it bugs me how there is no "Math.Cos" function that returns a float. A double is the only value you can get back thus forcing you to cast it to a float.
Like so:: {float val = ...
11
votes
2answers
652 views
Why does (360 / 24) / 60 = 0 … in Java
I am trying to compute (360 / 24) / 60 I keep getting the answer 0.0 when I should get 0.25
In words: I want to divide 360 by 24 and then divide the result by 60
public class Divide {
public ...
11
votes
11answers
47k views
How can I convert a string to a number in Perl?
How would I convert a string holding a number into an integer in Perl?
11
votes
10answers
13k views
Best way to parse float?
What is the best way to parse a float in CSharp?
I know about TryParse, but what I'm particularly wondering about is dots, commas etc.
I'm having problems with my website. On my dev server, the ',' ...
10
votes
3answers
146 views
adding the components of an SSE register
I want to add the four components of an SSE register to get a single float. This is how I do it now:
float a[4];
_mm_storeu_ps(a, foo128);
float x = a[0] + a[1] + a[2] + a[3];
Is there an SSE ...
10
votes
2answers
141 views
C++ gamedev: truncating float to int
I'm making a game in C++ where is a tank that can moves on a stage. The tank has an angle (float, in degrees, and i'm supposing the tank is at 0ยบ when his cannon points to the right), a speed (float), ...
10
votes
1answer
175 views
Vertical align floats on decimal dot
Is there a simple way to align on the decimal dot a column of floats? In other words, I would like an output like the one of (vertical bars '|' are there only for clarity purpose)
(format t ...
10
votes
8answers
677 views
Implement this layout using CSS float:left and float:right, or using CSS margin-left and position:absolute?
I want to place some annotations to the left of a topic using HTML and CSS (for example the 'status' and 'author' annotations shown in the following mockup/image):
I prefer CSS instead of a ...
10
votes
1answer
688 views
If dealing with money in a float is bad, then why does money_format() do it?
I've been waffling on how to deal with currency display and math in PHP, and for a long time have been storing it in MySQL using the DECIMAL type, and using money_format() to format it for display on ...
10
votes
4answers
699 views
Visual Studio C++ 2008 / 2010 - break on float NaN
Is there any way to set up Visual Studio (just upgraded from 2008 to 2010) to break, as if an assertion failed, whenever any floating point number becomes NaN, QNAN, INF, etc?
Up until now I have ...
10
votes
4answers
387 views
float bits and strict aliasing
I am trying to extract the bits from a float without invoking undefined behavior. Here is my first attempt:
unsigned foo(float x)
{
unsigned* u = (unsigned*)&x;
return *u;
}
As I ...
10
votes
2answers
270 views
Deterministic floating point and .NET
How can I guarantee that floating point calculations in a .NET application (say in C#) always produce the same bit-exact result? Especially when using different versions of .NET and running on ...
10
votes
6answers
914 views
Problem converting from int to float
There is a strange behavior I cannot understand.
Agreed that float point number are approximations, so even operations that are obviously returning a number without decimal numbers can be approximated ...
10
votes
5answers
30k views
How do I convert a float to an int in Objective C?
Total newbie question but this is driving me mad! I try myInt = [myFloat integerValue]; and I get an error saying essentially integerValue doesn't work on floats. How do I do it?
9
votes
3answers
73 views
CSS: Ignoring divs height when floating
I'm trying to display some pictures. All of them have the same width but different height.
I'm trying to do something like:
Every picture's class name is pic
<img class = "pic" src = .... />
...
9
votes
2answers
244 views
NaN ASCII I/O with Visual C++
I want to read and write NaN values from/into text files using iostream and Visual C++. When writing a NaN value, i get 1.#QNAN. But, reading it back outputs 1.0 .
float nan = ...
9
votes
9answers
406 views
Checking if float is equivalent to an integer value in python
In Python 3, I am checking whether a given value is triangular, that is, it can be represented as n(n+1)/2 for some positive integer n
Can I just write:
import math
def is_triangular1(x):
...
9
votes
4answers
545 views
Why is this true?
This is IEEE 754 standard question. I don't completely understand the mechanics behind it.
public class Gray {
public static void main(String[] args){
System.out.println( (float) ...
9
votes
4answers
4k views
How to create a random float in Objective-C?
I'm trying to create a random float between 0.15 and 0.3 in Objective-C. The following code always returns 1:
int randn = (random() % 15)+15;
float pscale = (float)randn / 100;
What am I doing ...