When I use this code:
The data is read, although as Integers.
If I change to using EITHER ReadFloat(File) OR ReadFloat#(File)
The data is NOT read correctly.
My data is as follows:
Any ideas on why this is?
File=OpenFile("File.txt") Dim a#(18) For f=1 To 18 temp#=ReadLine(Decal) a#(f)=temp# Next CloseFile(File)
The data is read, although as Integers.
If I change to using EITHER ReadFloat(File) OR ReadFloat#(File)
The data is NOT read correctly.
My data is as follows:
3.0000000 1.0000000 -3.0000000 -3.0000000 1.0000000 -3.0000000 0.0000000 -2.7000000 -11.000000 0.0000000 10.300000 18.000000 0.0000000 9.7000000 18.000000 0.0000000 0.8000000 -23.600000
Any ideas on why this is?