how to export to Excel in Mathematica from a Parametricplot command
- To: mathgroup at smc.vnet.net
- Subject: [mg127162] how to export to Excel in Mathematica from a Parametricplot command
- From: mrafiee20 at gmail.com
- Date: Mon, 2 Jul 2012 22:20:51 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
Hi all, This example is from Mathematica: http://reference.wolfram.com/mathematica/ref/ParametricPlot.html NDSolve[{y'[t] == y[t] (x[t] - 1), x'[t] == x[t] (2 - y[t]), x[0] == 1, y[0] == 2.7}, {x, y}, {t, 0, 10}]; ParametricPlot[Evaluate[{x[t], y[t]} /. First[%]], {t, 0, 10}] My question is: How can I export the results (*.xls or *.dat) to plot it with other programs like Origin pro, Excel, Tecplot, etc.?