<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, How to extract and plot data from a loop?</title>
    <link>http://www.mapleprimes.com/questions/136977-How-To-Extract-And-Plot-Data-From-A-Loop</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 14:09:08 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 14:09:08 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How to extract and plot data from a loop?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How to extract and plot data from a loop?</title>
      <link>http://www.mapleprimes.com/questions/136977-How-To-Extract-And-Plot-Data-From-A-Loop</link>
    </image>
    <item>
      <title>One way</title>
      <link>http://www.mapleprimes.com/questions/136977-How-To-Extract-And-Plot-Data-From-A-Loop?ref=Feed:MaplePrimes:How to extract and plot data from a loop?:Comments#answer136982</link>
      <itunes:summary>&lt;p&gt;IQ:=Vector([seq(Q,Q=-1.5..1.5,.1)]);&lt;br&gt;DT:=Vector([seq(Dtheta[Q],Q=-1.5..1.5,.1)]);&lt;br&gt;plot(IQ,DT);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;IQ:=Vector([seq(Q,Q=-1.5..1.5,.1)]);&lt;br&gt;DT:=Vector([seq(Dtheta[Q],Q=-1.5..1.5,.1)]);&lt;br&gt;plot(IQ,DT);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>136982</guid>
      <pubDate>Fri, 31 Aug 2012 19:10:24 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>Data to file</title>
      <link>http://www.mapleprimes.com/questions/136977-How-To-Extract-And-Plot-Data-From-A-Loop?ref=Feed:MaplePrimes:How to extract and plot data from a loop?:Comments#answer137008</link>
      <itunes:summary>&lt;p&gt;Here is one way.&lt;/p&gt;
&lt;p&gt;MM:=&amp;lt;IQ|DT&amp;gt;:&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;ExportMatrix("C:/temp/Data2.dat", MM, target = Matlab, format = rectangular, mode = ascii):&lt;/p&gt;
&lt;p&gt;This will concatenate your two Vectors and Export them to a file called Data2.dat in the C:\temp directory on a PC running Windows.&lt;br&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Georgios Kokovidis&lt;/p&gt;
&lt;p&gt;Dr&amp;auml;ger Medical&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Here is one way.&lt;/p&gt;
&lt;p&gt;MM:=&amp;lt;IQ|DT&amp;gt;:&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;ExportMatrix("C:/temp/Data2.dat", MM, target = Matlab, format = rectangular, mode = ascii):&lt;/p&gt;
&lt;p&gt;This will concatenate your two Vectors and Export them to a file called Data2.dat in the C:\temp directory on a PC running Windows.&lt;br&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Georgios Kokovidis&lt;/p&gt;
&lt;p&gt;Dr&amp;auml;ger Medical&lt;/p&gt;</description>
      <guid>137008</guid>
      <pubDate>Sat, 01 Sep 2012 07:33:49 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>how make plot against at f''(0) and theta'(0)</title>
      <link>http://www.mapleprimes.com/questions/136977-How-To-Extract-And-Plot-Data-From-A-Loop?ref=Feed:MaplePrimes:How to extract and plot data from a loop?:Comments#answer137121</link>
      <itunes:summary>&lt;p&gt;&lt;br&gt;hi,&lt;br&gt;&amp;nbsp; &amp;nbsp;how you can plot f''(0) and theta'(0) against Pr.&lt;br&gt;&amp;nbsp;thanks&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;br&gt;hi,&lt;br&gt;&amp;nbsp; &amp;nbsp;how you can plot f''(0) and theta'(0) against Pr.&lt;br&gt;&amp;nbsp;thanks&lt;/p&gt;</description>
      <guid>137121</guid>
      <pubDate>Thu, 06 Sep 2012 15:13:40 Z</pubDate>
      <itunes:author>Noreen cute</itunes:author>
      <author>Noreen cute</author>
    </item>
    <item>
      <title>but how to get the data?</title>
      <link>http://www.mapleprimes.com/questions/136977-How-To-Extract-And-Plot-Data-From-A-Loop?ref=Feed:MaplePrimes:How to extract and plot data from a loop?:Comments#comment136983</link>
      <itunes:summary>&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;It worked, but I need to find a way to get the data in a .txt file,&lt;/p&gt;
&lt;p&gt;which then can be used for further analysis.&lt;/p&gt;
&lt;p&gt;Some thing like this&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Q &amp;nbsp; &amp;nbsp; Dtheta[Q]&lt;/p&gt;
&lt;p&gt;-1.5 &amp;nbsp; 3&lt;/p&gt;
&lt;p&gt;-1 &amp;nbsp; &amp;nbsp; 2&lt;/p&gt;
&lt;p&gt;. &amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/p&gt;
&lt;p&gt;. &amp;nbsp; &amp;nbsp; .&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;It worked, but I need to find a way to get the data in a .txt file,&lt;/p&gt;
&lt;p&gt;which then can be used for further analysis.&lt;/p&gt;
&lt;p&gt;Some thing like this&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Q &amp;nbsp; &amp;nbsp; Dtheta[Q]&lt;/p&gt;
&lt;p&gt;-1.5 &amp;nbsp; 3&lt;/p&gt;
&lt;p&gt;-1 &amp;nbsp; &amp;nbsp; 2&lt;/p&gt;
&lt;p&gt;. &amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/p&gt;
&lt;p&gt;. &amp;nbsp; &amp;nbsp; .&lt;/p&gt;</description>
      <guid>136983</guid>
      <pubDate>Fri, 31 Aug 2012 19:26:00 Z</pubDate>
      <itunes:author>J4James</itunes:author>
      <author>J4James</author>
    </item>
  </channel>
</rss>