Connecting Tech Pros Worldwide Forums | Help | Site Map

reading float point from file

Affan Syed
Guest
 
Posts: n/a
#1: Jul 22 '05
Hi,
the file that i read has the following column as input:

1.000005
1.00001
1.000015
1.00002
1.000025

Now I have float variable skew.
When i read in from the file as inFile >>skew;
I read in following values:
Skew read= 1.00001
Skew read= 1.00001
Skew read= 1.00002
Skew read= 1.00002

So it rounds up to the 5th decimal position . Why? I know it might have
something to do with the insuffereable precision of float points. But is
there some easy way of gettin to read the correct value from the file and
not go to BCD?
Similarly when i do
float x= skew-1,
I get something which is not nearly like 0.00001, but a close approximation.
Again how can i get the correct value?

Thanks
Affan



Affan Syed
Guest
 
Posts: n/a
#2: Jul 22 '05

re: reading float point from file


actually the reading from file was okay... it read in the right value... but
when i debug it .. it just showed uptil a precision of 7 decimal points.. so
when i changed the precision of cout to 8, it printed the correctly rounded
values... So that is solved... however.. how do i do the maths with it...
as simple as subtracting one form it!!!?

regards
Affan
"Affan Syed" <asyed@usc.edu> wrote in message
news:coojee$h4p$1@gist.usc.edu...[color=blue]
> Hi,
> the file that i read has the following column as input:
>
> 1.000005
> 1.00001
> 1.000015
> 1.00002
> 1.000025
>
> Now I have float variable skew.
> When i read in from the file as inFile >>skew;
> I read in following values:
> Skew read= 1.00001
> Skew read= 1.00001
> Skew read= 1.00002
> Skew read= 1.00002
>
> So it rounds up to the 5th decimal position . Why? I know it might have
> something to do with the insuffereable precision of float points. But is
> there some easy way of gettin to read the correct value from the file and
> not go to BCD?
> Similarly when i do
> float x= skew-1,
> I get something which is not nearly like 0.00001, but a close
> approximation. Again how can i get the correct value?
>
> Thanks
> Affan
>[/color]


Jacek Dziedzic
Guest
 
Posts: n/a
#3: Jul 22 '05

re: reading float point from file


Użytkownik Affan Syed napisał:[color=blue]
> Hi,
> the file that i read has the following column as input:
>
> 1.000005
> 1.00001
> 1.000015
> 1.00002
> 1.000025
>
> Now I have float variable skew.
> When i read in from the file as inFile >>skew;
> I read in following values:
> Skew read= 1.00001
> Skew read= 1.00001
> Skew read= 1.00002
> Skew read= 1.00002
>
> So it rounds up to the 5th decimal position . Why? I know it might have
> something to do with the insuffereable precision of float points. But is
> there some easy way of gettin to read the correct value from the file and
> not go to BCD?
> Similarly when i do
> float x= skew-1,
> I get something which is not nearly like 0.00001, but a close approximation.
> Again how can i get the correct value?
>
> Thanks
> Affan [/color]

I'd bet that your numbers are in fact read in correctly,
but only rounded on output. What is the precision of your
output?

HTH,
- J.
roberth+news@ifi.uio.no
Guest
 
Posts: n/a
#4: Jul 22 '05

re: reading float point from file


Affan Syed <asyed@usc.edu> wrote:
| Hi,
| the file that i read has the following column as input:

| 1.000005
| 1.00001
| 1.000015
| 1.00002
| 1.000025

| Similarly when i do
| float x= skew-1,
| I get something which is not nearly like 0.00001, but a close approximation.

Floats are inaccurate in nature, and operations on them will usually
generate round off errors. There are certain tricks though:

* Use integers. Integer operations are accurate. It's just a matter of
placing the decimal separator correctly on output. However useful, this
requires very low limits on the values.

* Write 'abs(a - b) < eps' in tests rather than 'a == b' if you want to
check for equality between a and b. eps must be a sufficiently small
floating point value.

* Don't subtract quantities of almost equal size as part of a larger
calculation. Rather try to rewrite the expression to avoid such things.

* Use types with more precision. The double type should often be
preferred over float.

For your example: If skew is generally "1.000...x", modify the string to
0.000...x before converting to float.

| Again how can i get the correct value?

You can't.
--
Robert Bauck Hamar
Affan Syed
Guest
 
Posts: n/a
#5: Jul 22 '05

re: reading float point from file


Just as you said and i have already posted.. I can read in the value
correctly.
Affan
"Jacek Dziedzic" <jacek__NOSPAM__@janowo.net> wrote in message
news:cookcu$rq2$1@korweta.task.gda.pl...
Użytkownik Affan Syed napisał:[color=blue]
> Hi,
> the file that i read has the following column as input:
>
> 1.000005
> 1.00001
> 1.000015
> 1.00002
> 1.000025
>
> Now I have float variable skew.
> When i read in from the file as inFile >>skew;
> I read in following values:
> Skew read= 1.00001
> Skew read= 1.00001
> Skew read= 1.00002
> Skew read= 1.00002
>
> So it rounds up to the 5th decimal position . Why? I know it might have
> something to do with the insuffereable precision of float points. But is
> there some easy way of gettin to read the correct value from the file and
> not go to BCD?
> Similarly when i do
> float x= skew-1,
> I get something which is not nearly like 0.00001, but a close
> approximation. Again how can i get the correct value?
>
> Thanks
> Affan[/color]

I'd bet that your numbers are in fact read in correctly,
but only rounded on output. What is the precision of your
output?

HTH,
- J.


Karl Heinz Buchegger
Guest
 
Posts: n/a
#6: Jul 22 '05

re: reading float point from file


Affan Syed wrote:[color=blue]
>
> actually the reading from file was okay... it read in the right value... but
> when i debug it .. it just showed uptil a precision of 7 decimal points.. so
> when i changed the precision of cout to 8, it printed the correctly rounded
> values... So that is solved... however.. how do i do the maths with it...
> as simple as subtracting one form it!!!?[/color]

Is this a trick question (and please don't top post. Put your reply beneath
the text you are replying to. Thank you).

skew = skew - 1.0;
or
skew -= 1.0;

And also note: Use 'float' only if you know what you do, have the knowledge
the fight that beast, are willing to actually fight that beast and have
a very, very, very good reason to use 'float'. In all other cases, use 'double'.


--
Karl Heinz Buchegger
kbuchegg@gascad.at
Arijit
Guest
 
Posts: n/a
#7: Jul 22 '05

re: reading float point from file


Affan Syed wrote:[color=blue]
> actually the reading from file was okay... it read in the right value... but
> when i debug it .. it just showed uptil a precision of 7 decimal points.. so
> when i changed the precision of cout to 8, it printed the correctly rounded
> values... So that is solved... however.. how do i do the maths with it...
> as simple as subtracting one form it!!!?
>
> regards
> Affan[/color]

Try this: http://docs.sun.com/source/806-3568/ncg_goldberg.html
It has everything you probably ever will want to know about floating
point (and more :) )
Closed Thread