How do I read in a floating point binary data file ? And how can I then loop through each point of it ?
Floating point binary data
Collapse
X
-
Tags: None
-
Originally posted by dschulenburgHow do I read in a floating point binary data file ? And how can I then loop through each point of it ?
http://www.cplusplus.c om/doc/tutorial/files.html
how was the binary file created? -
-
Originally posted by dschulenburgIt's written in C with the fwrite command.
http://www.cplusplus.c om/reference/clibrary/cstdio/fread.html
or in C++ ifstream
http://www.cplusplus.c om/doc/tutorial/files.htmlComment
-
Great Thanks, the example is very good. How do I then loop trhough the buffer to write into text using fprintf ?Comment
-
Comment