08-08-2013 01:40 PM
....IntClk_ToFile example
I am trying to understand how the following function writes data to a file. It does not seem to be associated with a filestream.
What am I missing?
Thanks!
private void LogData(double[,] data)
{
int channelCount = data.GetLength(0);
int dataCount = data.GetLength(1);
for (int i = 0; i < channelCount; i++)
{
ArrayList l = savedData[i] asArrayList;
for (int j = 0; j < dataCount; j++)
{
l.Add(data[i, j]);
}
}
}
Solved! Go to Solution.
08-08-2013 01:51 PM
Sorry...I just realized that the example writes the file at the end of the acquisition...