Hi all
I want idl to output data into txt file, the data have seven
columns, but idl will ex****t first five column into one line and
another two into seperate line.
openw,1,'source_countrate'
for i=0,n do printf, 1, data[0,i], data[1,i],
data[2,i],data[3,i],data[4,i],data[5,i],data[6,i]
close,1
I want it to be a 7xn table, so for same i, data[0,i], data[1,i],
data[2,i],data[3,i],data[4,i],data[5,i],data[6,i] are in one line.
Thanks in advance and I appreciate your help.


|