01-29-2010 05:15 PM
Solved! Go to Solution.
02-01-2010 05:27 PM
How many channels are you reading from? The samples per second is what will tell you how much data you are producing. Multiply this by the number of channels and you will get the total number of samples per secon of data being generated. (The samples per channel just determines the buffer size in a continuous acquisition, so it is not used to determine the total amount of data being generated.) Each sample will take 2 Bytes, so the total amount of data will be 2*2000*Number of Channels*Number of Seconds that your test runs for. Based on your description, it doesn't sound like compression is really necessary; just save your files to whatever format your other program can read (tab delimited text files, or some other common format), and don't worry about compression unless your file sizes become prohibitive.
-Christina