1
vote
6answers
100 views
A floating point array in C
i am developing a code where i have to load floating point values stored in each line at a time in a text file...i loaded each of these data into a array of floats using fscanf()...however i found …
0
votes
4answers
42 views
Center float boxes horizontally
I want to display some floating boxes (divs containing thumbnails) and the number of thumbnails depends on the current page width. For example:
<div class="container">
<div class="box1" …
5
votes
4answers
59 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 …
0
votes
2answers
36 views
Float issue with jQuery/javascript and WebKit
Hi,
I'm having a problem related to WebKit:
http://demo.frojd.se/webkit/index.html
When you click "Menu item 1" it shows it's children.
This renders fine in Firefox 3.5, IE8 and in Opera 10.
In …
3
votes
5answers
61 views
how to make a div to wrap two float divs inside?
I don't know if it's a common problem, but I can't find the solution in web so far.
I would like to have two divs wrapped inside another div, however these two divs inside have to be align the same …
0
votes
5answers
109 views
Float Addition issue [closed]
Possible Duplicate:
Float addition promoted to double?
Dot Net C++
float xMin = 20000.0;
float xOff = 0.001;
float xMax = xMin + xOff;
xMax is becoming 20000.002 instead of 20000.001
Any …
0
votes
2answers
29 views
use two divs in parallel in IE
Thanks for answering
1
vote
5answers
155 views
What is the range of values a float can have in Python?
What are its smallest and biggest values in python?
1
vote
3answers
19 views
How do ldexp and frexp work in python?
The python frexp and ldexp functions splits floats into mantissa and exponent.
Do anybody know if this process exposes the actual float structure, or if it requires python to do expensive logarithmic …
2
votes
2answers
45 views
How to read a binary file and display the output as a float in C?
Hi,
I'm trying to read 4-byte numbers stored in a binary file, but I don't seem to be getting the correct output. Here's my code:
#include <stdio.h>
#include <stdlib.h>
int main ()
{
…
1
vote
1answer
34 views
How Decimal places are converted using FLOAT in SQL Server 2000/2005/2008
Hi, in this SO question the OP wanted to drop the 0's in the decimal places for his results. Now the example I gave (below) to get around this was to CAST with DECIMAL, then CAST with FLOAT.
e.g.
…
0
votes
4answers
74 views
How to put text over an image without absolute positioning or setting the image as backbround
Hi, I'm trying to see if it is possible to put some text over an image without using position: absolute or having the image being, the background of an element.
The reason for the constraints is that …
1
vote
3answers
86 views
css float problem
I have about 8 paragraphs which I would like to float left, but some of the paragraphs have more text than others.
So when I view in a browser, I get the left to right floating that I want, but I get …
0
votes
1answer
20 views
linq to sql strange float behaviour
Hello, I have a problem with a double (TaxRate here), that do not have the same value when it pass through functions:
I first call a function
DataContext.UpdateCategory(theCategorie.Code, …
1
vote
3answers
113 views
Where does C++ standard define the value range of float types?
As far as I know floating point values are of the form n * 2^e, with
float range being n = -(2^23-1) - (2^23-1), and e = -126 - 127,
double range being n = -(2^52-1) - (2^52-1), and e = -1022 - 1023
…
