reading float point from file

A

Affan Syed

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
 
A

Affan Syed

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
 
J

Jacek Dziedzic

U¿ytkownik Affan Syed napisa³:
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

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.
 
R

roberth+news

| 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.
 
A

Affan Syed

Just as you said and i have already posted.. I can read in the value
correctly.
Affan
U¿ytkownik Affan Syed napisa³:
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

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.
 
K

Karl Heinz Buchegger

Affan said:
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!!!?

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'.
 
A

Arijit

Affan said:
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

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 :) )
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top