Split one column array into columns

Hi to all,

I have an array that looks like:


"comp01" 5
0.001
0.002
0.003
"comp02" 5
0.004
0.005
0.006
"comp03" 5
0.007
0.008
0.009

How to split (rearrange) this array into three columns? (for example):


"comp01" 5   "comp02" 5   "comp03" 5
0.001           0.004          0.007
0.002           0.005          0.008
0.003           0.006          0.009