10
votes
6answers
377 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 …
9
votes
12answers
886 views
Should I use double or float ?
What are the advantages and disadvantages of using one instead of the other in C++?
8
votes
8answers
10k 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 …
7
votes
2answers
3k 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 …
7
votes
7answers
3k 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 …
7
votes
8answers
2k 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 …
6
votes
4answers
83 views
How can i make a float top with css?
Hi, i know that css only supports left and right values for float property, but is there a technique to implement a float top? I try to explain. I have the following code:
<div …
6
votes
4answers
328 views
How do I convert unicode characters to floats in Python?
I am parsing a webpage which has Unicode representations of fractions. I would like to be able to take those strings directly and convert them to floats. For example:
"⅕" would become 0.2
Any …
6
votes
2answers
915 views
How can I convert four characters into a 32-bit IEEE-754 float in Perl?
I have a project where a function receives four 8-bit characters and needs to convert the resulting 32-bit IEEE-754 float to a regular Perl number. Seems like there should be a faster way than the …
6
votes
10answers
2k 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 ',' …
5
votes
5answers
1k 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 …
5
votes
7answers
2k 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?
5
votes
6answers
4k 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].
5
votes
10answers
346 views
Would you consider float values to behave differently across a release and debug builds to be a bug?
My application is generating different floating point values when I compile it in release mode and in debug mode. The only reason that I found out is I save a binary trace log and the one from the …
4
votes
5answers
354 views
Platform-independent way to obtain maximum C++ float value
What’s the best, platform-independent way to obtain the maximum value that can be stored in a float in C++?
