07-04-2007 12:01 AM
07-04-2007 02:00 AM
And we have problems reading the body of your question. 🙂
What's the error? How are you reading the binary file? What's in the binary file? Do you know the datatype and byte order?
Could you attach a small sample file and the code you are using?
07-04-2007 03:19 AM
07-04-2007 05:13 AM - edited 07-04-2007 05:13 AM
Message Edited by daveTW on 07-04-2007 12:13 PM
07-04-2007 05:45 AM
07-04-2007 05:59 AM
07-04-2007 06:00 AM
07-04-2007 11:39 AM
All you need is to look at the online help for "read from binary file" . Specifically:
"If count calls for an array of elements and the specified data type is an array, the function automatically returns a cluster of arrays or cluster array because LabVIEW does not allow arrays of arrays."
Could that be it?
Basically, you are writing multiple 2D arrays, each with size information, at each iteration of the loop. You can't just read it as one single 2D array later and expect it to interpret the binary data correctly.