Batch - combining 3 columns of x, y, z values into 1 column without using MatLab
问题 I have about 150 files containing 3 columns of x, y, z values and no header. x1 y1 z1 x2 y2 z2 x3 y3 z3 ... xn yn zn For our compress sensing algorithm, I need to have these values in one column only x1 y1 z1 x2 y2 z2 . . . xn yn zn How could I perform this batch operation for 150 files, without using MatLab? From my previous question, I believe this could be done by using sed. But batch processing 150 files effectively is beyond my ability. I am running on Win7 with cygwin installed. Any