I have a (very large) matrix with Times as column headers, Dates as Row headers, and a value for each Time/Date.
I wish to convert this to a (2 column ideally, but can live with more and functions) with Date/Times as a column and the corresponding values as the second column.


Date\Time 0:15 0:30 0:45
I have: 12/1/2002 178 177 176
12/2/2002 185 186 183



Date Time Value
I want: 12/1/2002 0:15 178
12/1/2002 0:30 177
12/1/2002 0:45 176
12/2/2002 0:15 185
12/2/2002 0:30 186
12/2/2002 0:45 183



I thank you in advance for your help.

FredC