<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Export results</title>
    <link>http://www.mapleprimes.com/questions/35871-Export-Results</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sat, 13 Jun 2026 21:00:55 GMT</lastBuildDate>
    <pubDate>Sat, 13 Jun 2026 21:00:55 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Export results</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Export results</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results</link>
    </image>
    <item>
      <title>One way</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results?ref=Feed:MaplePrimes:Export results:Comments#answer59624</link>
      <itunes:summary>&lt;p&gt;This isn't the only way you can do this but here is one way that should work.&amp;nbsp; I have started with an example of the odeplot from the help page.&lt;/p&gt;
&lt;p&gt;&amp;gt; with(plots);&lt;br /&gt;
&amp;gt; p := dsolve({y(0) = 1, (D(y))(x) = y(x)}, type = numeric, range = -5 .. 2);&lt;br /&gt;
&amp;gt; P1 := odeplot(p):&lt;/p&gt;
&lt;p&gt;Now you have stored the odeplot in the variable P1.&amp;nbsp; Now use the op command to take out the data from the plot structure.&lt;/p&gt;
&lt;p&gt;&amp;gt; op([1, 1], P1);&lt;/p&gt;
&lt;p&gt;Make sure that the above is an array in your case.&amp;nbsp; If that is the case the following line will convert that Array to a Matrix and use the ExportMatrix command to export the data as a tab delimited file&lt;/p&gt;
&lt;p&gt;&amp;gt; ExportMatrix(&amp;quot;C:\\Test\\Mydata.txt&amp;quot;, convert(op([1, 1], P1), Matrix), target = delimited, delimiter = &amp;quot;\t&amp;quot;);&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Scott&lt;br /&gt;
Application Developer&lt;br /&gt;
Maplesoft&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;This isn't the only way you can do this but here is one way that should work.&amp;nbsp; I have started with an example of the odeplot from the help page.&lt;/p&gt;
&lt;p&gt;&amp;gt; with(plots);&lt;br /&gt;
&amp;gt; p := dsolve({y(0) = 1, (D(y))(x) = y(x)}, type = numeric, range = -5 .. 2);&lt;br /&gt;
&amp;gt; P1 := odeplot(p):&lt;/p&gt;
&lt;p&gt;Now you have stored the odeplot in the variable P1.&amp;nbsp; Now use the op command to take out the data from the plot structure.&lt;/p&gt;
&lt;p&gt;&amp;gt; op([1, 1], P1);&lt;/p&gt;
&lt;p&gt;Make sure that the above is an array in your case.&amp;nbsp; If that is the case the following line will convert that Array to a Matrix and use the ExportMatrix command to export the data as a tab delimited file&lt;/p&gt;
&lt;p&gt;&amp;gt; ExportMatrix(&amp;quot;C:\\Test\\Mydata.txt&amp;quot;, convert(op([1, 1], P1), Matrix), target = delimited, delimiter = &amp;quot;\t&amp;quot;);&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Scott&lt;br /&gt;
Application Developer&lt;br /&gt;
Maplesoft&lt;/p&gt;</description>
      <guid>59624</guid>
      <pubDate>Thu, 28 Jan 2010 21:29:54 Z</pubDate>
      <itunes:author>Scott03</itunes:author>
      <author>Scott03</author>
    </item>
    <item>
      <title>Why odeplot?</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results?ref=Feed:MaplePrimes:Export results:Comments#answer59625</link>
      <itunes:summary>&lt;p&gt;Scott's method will work, but do you really need to use odeplot?&amp;nbsp; dsolve(..., numeric) is the normal way to get the numerical solution of a differential equation or system, and with the output=&amp;lt;Array&amp;gt; option you get a Matrix containing the numerical values at specified points.&amp;nbsp; In Scott's example, suppose you want the solution at all multiples of .001 from x=-5 to 2.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; X:= Array([seq(x, x = -5 .. 2, 0.001)]);
&amp;nbsp; S:= dsolve({y(0) = 1, (D(y))(x) = y(x)}, type = numeric, output=X);
&amp;nbsp; M:= S[2,1];
&amp;nbsp;&amp;nbsp;ExportMatrix(&amp;quot;C:\\Test\\Mydata.txt&amp;quot;, M, target = delimited, delimiter=&amp;quot;\t&amp;quot;);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Scott's method will work, but do you really need to use odeplot?&amp;nbsp; dsolve(..., numeric) is the normal way to get the numerical solution of a differential equation or system, and with the output=&amp;lt;Array&amp;gt; option you get a Matrix containing the numerical values at specified points.&amp;nbsp; In Scott's example, suppose you want the solution at all multiples of .001 from x=-5 to 2.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; X:= Array([seq(x, x = -5 .. 2, 0.001)]);
&amp;nbsp; S:= dsolve({y(0) = 1, (D(y))(x) = y(x)}, type = numeric, output=X);
&amp;nbsp; M:= S[2,1];
&amp;nbsp;&amp;nbsp;ExportMatrix(&amp;quot;C:\\Test\\Mydata.txt&amp;quot;, M, target = delimited, delimiter=&amp;quot;\t&amp;quot;);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>59625</guid>
      <pubDate>Thu, 28 Jan 2010 21:49:31 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Thank You very much, Scott.</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results?ref=Feed:MaplePrimes:Export results:Comments#answer59626</link>
      <itunes:summary>&lt;p&gt;Thank You very much, Scott. It seems to me that your one way is the best method for me. That&amp;rsquo;s just what I want. Thanks once more.&lt;br /&gt;
&lt;br /&gt;
Robert thanks for help too. But your method isn&amp;rsquo;t for me. The point is that my system consists of 10 not easy differential equations. Now Maple computes it about hour (system will be complicate). In your case I must set step of computation. And that&amp;rsquo;s problem for me. I could be wrong but if I set short step the computation may slow down yet more. And if I set coarse step I run risks to withdraw the incorrect results. Whatever the case, odeplot function is optimized in this respect. It uses variable (optimal) step of computation for the space of all the working out process. Am I not right?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thank You very much, Scott. It seems to me that your one way is the best method for me. That&amp;rsquo;s just what I want. Thanks once more.&lt;br /&gt;
&lt;br /&gt;
Robert thanks for help too. But your method isn&amp;rsquo;t for me. The point is that my system consists of 10 not easy differential equations. Now Maple computes it about hour (system will be complicate). In your case I must set step of computation. And that&amp;rsquo;s problem for me. I could be wrong but if I set short step the computation may slow down yet more. And if I set coarse step I run risks to withdraw the incorrect results. Whatever the case, odeplot function is optimized in this respect. It uses variable (optimal) step of computation for the space of all the working out process. Am I not right?&lt;/p&gt;</description>
      <guid>59626</guid>
      <pubDate>Mon, 01 Feb 2010 16:59:49 Z</pubDate>
      <itunes:author>serilas</itunes:author>
      <author>serilas</author>
    </item>
    <item>
      <title>I still need help</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results?ref=Feed:MaplePrimes:Export results:Comments#answer59628</link>
      <itunes:summary>&lt;p&gt;&lt;i&gt;&amp;ldquo;With the default settings, I don't think odeplot gives you adaptive plotting: in my experiments, the interval between the &lt;b&gt;t&lt;/b&gt; values plotted was constant.&amp;rdquo;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t think so. You take a simple example. Try to increase the range of computation for a few orders and then you&amp;rsquo;ll see that step size isn&amp;rsquo;t constant in odeplot.&lt;br /&gt;
My task needs to compute system of ODE in the time span from 10&lt;sup&gt;-22&lt;/sup&gt; to 10&lt;sup&gt;-5&lt;/sup&gt;. In the case when employs fixed step size I obtain too many unnecessary points (about 10&lt;sup&gt;17&lt;/sup&gt; points if I want to see result features in the total time range from 10&lt;sup&gt;-22&lt;/sup&gt; to 10&lt;sup&gt;-5&lt;/sup&gt;). But odeplot function is convenient for me because it extracts points from full time range but these points are not many (minimal number of points is specify).&lt;br /&gt;
Now my system of equations consists of about 10 functions. Suggest me please, how export all the computation results obtained by means of odeplot function in a single text file? A structure of this file must be follow:&lt;br /&gt;
&lt;br /&gt;
t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; F1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; F2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; F3&lt;br /&gt;
.1e-23 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 2000.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; .1e-1 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.&lt;br /&gt;
.630957e-21&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2401.002702&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .138391e-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .411177e-2&lt;br /&gt;
.126191e-20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4801.010820&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .435356e-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .144869e-2&lt;br /&gt;
.789287e-20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7201.024351&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .911873e-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .810107e-1&lt;br /&gt;
.252382e-19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9601.043297&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .139472e-2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .407977e-1&lt;br /&gt;
.832863e-19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12001.06765&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .747403e-2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .160035e-1&lt;br /&gt;
.....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
The first column corresponds independent variable (time), next columns correspond certain functions with titles for identification.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;i&gt;&amp;ldquo;With the default settings, I don't think odeplot gives you adaptive plotting: in my experiments, the interval between the &lt;b&gt;t&lt;/b&gt; values plotted was constant.&amp;rdquo;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t think so. You take a simple example. Try to increase the range of computation for a few orders and then you&amp;rsquo;ll see that step size isn&amp;rsquo;t constant in odeplot.&lt;br /&gt;
My task needs to compute system of ODE in the time span from 10&lt;sup&gt;-22&lt;/sup&gt; to 10&lt;sup&gt;-5&lt;/sup&gt;. In the case when employs fixed step size I obtain too many unnecessary points (about 10&lt;sup&gt;17&lt;/sup&gt; points if I want to see result features in the total time range from 10&lt;sup&gt;-22&lt;/sup&gt; to 10&lt;sup&gt;-5&lt;/sup&gt;). But odeplot function is convenient for me because it extracts points from full time range but these points are not many (minimal number of points is specify).&lt;br /&gt;
Now my system of equations consists of about 10 functions. Suggest me please, how export all the computation results obtained by means of odeplot function in a single text file? A structure of this file must be follow:&lt;br /&gt;
&lt;br /&gt;
t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; F1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; F2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; F3&lt;br /&gt;
.1e-23 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 2000.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; .1e-1 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.&lt;br /&gt;
.630957e-21&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2401.002702&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .138391e-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .411177e-2&lt;br /&gt;
.126191e-20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4801.010820&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .435356e-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .144869e-2&lt;br /&gt;
.789287e-20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7201.024351&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .911873e-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .810107e-1&lt;br /&gt;
.252382e-19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9601.043297&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .139472e-2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .407977e-1&lt;br /&gt;
.832863e-19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12001.06765&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .747403e-2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .160035e-1&lt;br /&gt;
.....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
The first column corresponds independent variable (time), next columns correspond certain functions with titles for identification.&lt;/p&gt;</description>
      <guid>59628</guid>
      <pubDate>Wed, 17 Mar 2010 13:09:47 Z</pubDate>
      <itunes:author>serilas</itunes:author>
      <author>serilas</author>
    </item>
    <item>
      <title>Searching of another way</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results?ref=Feed:MaplePrimes:Export results:Comments#answer59630</link>
      <itunes:summary>&lt;p&gt;That doesn&amp;rsquo;t work in my case. Maybe I don&amp;rsquo;t know or understand something. I tried to do that in the following way (for example):&lt;br /&gt;
&lt;br /&gt;
&amp;gt; restart; with(plots):&lt;br /&gt;
&amp;gt; sys:=diff(f1(t),t)=0.5/f2(t),&lt;br /&gt;
diff(f2(t),t)=sin(t),&lt;br /&gt;
diff(f3(t)*f4(t),t)=0.15,&lt;br /&gt;
diff(f3(t)/f4(t),t)=0.2*f2(t):&lt;br /&gt;
&amp;gt; init:= f1(0)=1, f2(0)=1, f3(0)=1, f4(0)=1:&lt;br /&gt;
&amp;gt; F:=dsolve({sys,init}, {f1(t), f2(t), f3(t), f4(t)}, numeric);&lt;br /&gt;
&amp;gt; W:=odeplot(F, [[t,f1(t)], [t,f2(t)], [t,f3(t)], [t,f4(t)]], 0..5.5):&lt;br /&gt;
&amp;gt; display(W);&lt;br /&gt;
&lt;br /&gt;
Now all the calculated functions are located in W and I can plot them on the single diagram. But I don&amp;rsquo;t know haw export result from W into one text file in this case. Maybe who knows?&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;That doesn&amp;rsquo;t work in my case. Maybe I don&amp;rsquo;t know or understand something. I tried to do that in the following way (for example):&lt;br /&gt;
&lt;br /&gt;
&amp;gt; restart; with(plots):&lt;br /&gt;
&amp;gt; sys:=diff(f1(t),t)=0.5/f2(t),&lt;br /&gt;
diff(f2(t),t)=sin(t),&lt;br /&gt;
diff(f3(t)*f4(t),t)=0.15,&lt;br /&gt;
diff(f3(t)/f4(t),t)=0.2*f2(t):&lt;br /&gt;
&amp;gt; init:= f1(0)=1, f2(0)=1, f3(0)=1, f4(0)=1:&lt;br /&gt;
&amp;gt; F:=dsolve({sys,init}, {f1(t), f2(t), f3(t), f4(t)}, numeric);&lt;br /&gt;
&amp;gt; W:=odeplot(F, [[t,f1(t)], [t,f2(t)], [t,f3(t)], [t,f4(t)]], 0..5.5):&lt;br /&gt;
&amp;gt; display(W);&lt;br /&gt;
&lt;br /&gt;
Now all the calculated functions are located in W and I can plot them on the single diagram. But I don&amp;rsquo;t know haw export result from W into one text file in this case. Maybe who knows?&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;</description>
      <guid>59630</guid>
      <pubDate>Thu, 25 Mar 2010 12:21:54 Z</pubDate>
      <itunes:author>serilas</itunes:author>
      <author>serilas</author>
    </item>
    <item>
      <title>This way isn’t optimal</title>
      <link>http://www.mapleprimes.com/questions/35871-Export-Results?ref=Feed:MaplePrimes:Export results:Comments#answer59632</link>
      <itunes:summary>&lt;p&gt;In this case the system of ODE solving twice but time for me is very important. Expect about half hour once more don&amp;rsquo;t give more pleasure to me.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In this case the system of ODE solving twice but time for me is very important. Expect about half hour once more don&amp;rsquo;t give more pleasure to me.&lt;/p&gt;</description>
      <guid>59632</guid>
      <pubDate>Sat, 27 Mar 2010 01:58:47 Z</pubDate>
      <itunes:author>serilas</itunes:author>
      <author>serilas</author>
    </item>
  </channel>
</rss>