If your data is a 1D array of floating precision numbers, your simplest method is to use the "Format Into String" function. It provides unlimited flexibility for the format of each element of your array and is easily expanded as your data expands.
Just split the elements with Index Array, and wire each element into the Format Into String. You will need to either stretch the function to create additional inputs or you can just create the format string to add the inputs.
To create the format string manually, drop a string constant above the Format Into String function. Right-click and select \ formatting. Type the following into the string constant:
%d\t%.6e\t%.2f\r\n
This will give you an integer, a six digit exponential, and a 2 digit
floating point. Wire this string into the Format String input. The "edit format string" dialog will step you through the syntax for all the options.
The resulting string can be written to file directly with the Write Characters To File, or buffered by appending to the previous string and written all at once.
If your data is 2D, put a For Loop around the function and use a shift register to append the strings.
Michael
www.abcdefirm.com