09-22-2006 09:36 AM
09-22-2006 09:59 AM
The easiest thing is to use Copy1D functions into the Analisys library. Y could use the following:
1. Dimension a temporary array of 100 elements (calloc...)
2. Read all the content of your file into tat temporary array:
FileToArray ("C:\\data.ini", temp, VAL_DOUBLE, 100, 1, VAL_GROUPS_TOGETHER, VAL_GROUPS_AS_COLUMNS, fileType);
3. Copy the firts half to High array:
Copy1D (temp, 50, High);
4. Copy the second half to Low array:
Copy1D (temp + 50, 50, Low);
5. Free your temporary array
09-22-2006 10:19 AM
09-22-2006 01:35 PM
@FredTest wrote:
Does this mean I can't use the Copy1D function?