I have a massive file of format:
Title 1
Data point 1
Data point 2
Data point 3
......................
Data point n
Title 2
Data point 1
Data point 2
Data point 3
......................
Data point n
........................
...........................
Title n
Data point 1
Data point 2
Data point 3
......................
Data point n

And I need to some how get it to be transposed to:

Title 1 Data 1 Data 2 ..... Data n
Title 2 Data 1 Data 2 ..... Data n
Title n Data 1 Data 2 ..... Data n

I know about the transpose option on paste, but I would have to go through and do that about 10000 times or so. I really hope I don't have to do that.
I really appreciate any help you can give me!