Very new to Mathematica. Used the code to solve for the response of a system of spring mass dampers but would like to export the data to Excel.
Dyn = NDSolve[{Response[[1]] == 0, Response[[2]] == 0,
Response[[3]] == 0, Response[[4]] == 0, x[0] == 0.1, x'[0] == 0,
phi[0] == 0, phi'[0] == 0, xf[0] == 0, xf'[0] == 0, xr[0] == 0,
xr'[0] == 0}, {x, phi, xf, xr}, {t, 0, 1}];
Plot[Evaluate[{x[t], phi[t], xf[t], xr[t]} /. Dyn], {t, 0, 1}, PlotRange -> All]
Basically want x, phi, xf and xr against time, only in Excel.
Thanks.
Plotted graphics? In any case, there already are answers around (see right side of this page under "Linked"). – Yves Klett Apr 12 '13 at 13:48ExportandTablein the documentation. – Sjoerd C. de Vries Apr 12 '13 at 14:32