I have multi-valued functions that create lists of data like the following:
dat={{1, {2.2`, 0.6`, 0.8`, 1.3`}}, {2, {4.2`, 1.1`, 1.8`, 2.8`}}, {3, {6.2`, 1.6`, 2.8`, 4.3`}}, {4, {8.2`, 2.1`, 3.8`, 5.8`}}, {5, {10.2`, 2.6`, 4.8`, 7.3`}}, {6, {12.2`, 3.1`, 5.8`, 8.8`}}, {7, {14.2`, 3.6`, 6.8`, 10.3`}}, {8, {16.2`, 4.1`, 7.8`, 11.8`}}, {9, {18.2`, 4.6`, 8.8`, 13.3`}}, {10, {20.2`, 5.1`, 9.8`, 14.8`}}, {11, {16.3`, 10.8`, 5.6`, 21.8`, 18.9`}}, {12, {17.8`, 11.8`, 6.1`, 23.8`, 20.599`}}, {13, {19.3`, 12.8`, 6.6`, 25.8`, 22.299`}}, {14, {20.8`, 13.8`, 7.1`, 27.8`, 24.`}}, {15, {22.3`, 14.8`, 7.6`, 29.8`, 25.7`}}} The first element represents time. There are 3 or 4 or 5 values for each time. I need to make lists where each value is associated with a time so I can can plot them and interpolate them to make each value/time pair into a differentiable function. I have extracted one or two individual parts of the sublists, but cannot separate out all the pieces because the sublists are ragged; i.e., not all the same length. Can you help?






