The following command outputs a list of replacement rules.
sol3 = Flatten[
FindRoot[
y@t /. NDSolve[{y''[t] == -10 - 3/10 Sin@#, y'[0] == 12 Sin@#,
y[0] == 0}, y[t], {t, 0, 2 Pi}], {t, 2}] & /@ (Pi/180 Range[
10, 80])];
How can I convert that list into a list of real values? eg. replace each 't->2.45' with 2.45
t /. sol3? – m_goldberg Feb 07 '13 at 21:41