Could someone shead some light on this:
I had this in a script where the sarray held 0's or a 1's...
while count < 41
atoi sarray [count] [1] iarray [count] [1]
count++
endwhile
I got all sorts of crazy data and mostly 0's in iarray
I had to do this to get it to work...
while count < 41
atoi sarray [count] [1] itemp
iarray [count] [1] = itemp
count++
endwhile
I had this in a script where the sarray held 0's or a 1's...
while count < 41
atoi sarray [count] [1] iarray [count] [1]
count++
endwhile
I got all sorts of crazy data and mostly 0's in iarray
I had to do this to get it to work...
while count < 41
atoi sarray [count] [1] itemp
iarray [count] [1] = itemp
count++
endwhile