Hi all,
My binary file containts raw data from the inputs of the acquisition system.
But before all that, I am trying to write some specific information organized in a matrix. I normally build the array and just write it to the binary file.
When I see the information in the file, after I convert the bin file to text, the data is in desorder due to the fact that the matrix came with data about the number of rows(R) and columns(C) besides its content.
Instead of having
R C
A11 A12
A21 A22
D11 D12 D13
D21 D22 D23
.....
I have
R C A11
A12 A21 A22
D11 D12 D13
...
or even worse when the matrix data(A) or the acquired data (D) are more numerous.
I tried to insert the CR+LF character but this spoils worse the aspect and values in the text file.
Is it me that doesn't write correctly the binary file ( I use a slightly modified version of the ContAcq&Graph Voltage) or is it the conversion (done by the example Saved Graph acquired data.VI) that provides this sort of arrangement?
Do you know how could I solve this issue?
Thank you very much,
Dana