04-14-2010 11:29 PM - edited 04-14-2010 11:30 PM
Solved! Go to Solution.
04-15-2010 12:14 AM
Hi,
If your data is in an array, the easiest way is to use the ArrayToFile function.
It automatically creates a file and puts your data in it according to the format you provide.
If you have individual samples that you need to write once in a while, you can either collect them into an array and then use ArrayToFile or open a file with fopen and write them as they are acquired with fwrite.
Hope this helps,