John Cichy wrote: > > Thank you very much, you confirmed that I was at least on the right track > with what I was doing. The numbers are still not coming out correctly (at > least not what I was expecting). This file seems to be geared towards a > sun system, could this be effecting my results, would using binmode(FILE) > help if it was?
binmode() will help if you are running the code on a Windows machine. If the results are not what you expected it could be because the data is stored in big-endian order and you are reading the data on a computer with little-endian ordered data. Are you running this program on an Intel compatible CPU? Does any of the data use signed integers (negative numbers?) John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]