<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, dsolve/numeric otput-array</title>
    <link>http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 23:44:45 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 23:44:45 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, dsolve/numeric otput-array</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, dsolve/numeric otput-array</title>
      <link>http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray</link>
    </image>
    <item>
      <title>Example.</title>
      <link>http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray?ref=Feed:MaplePrimes:dsolve/numeric otput-array:Comments#answer130473</link>
      <itunes:summary>&lt;p&gt;I created a simple example, just to show how it can be done:&lt;/p&gt;
&lt;p&gt;s := 100:&lt;br&gt;F := dsolve({seq(diff(x[i](t), t) = x[i](t), i = 1 .. 6), seq(x[i](0) = i, i = 1 .. 6)}, numeric, 'output' = Array([seq(0.1*i, i = 1 .. s)]));&lt;/p&gt;
&lt;p&gt;Then F[2, 1] is a matrix of calculated points (for all variables). For each variable to fit the function to it you have to extract two corresponding columns (of that matrix).&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I created a simple example, just to show how it can be done:&lt;/p&gt;
&lt;p&gt;s := 100:&lt;br&gt;F := dsolve({seq(diff(x[i](t), t) = x[i](t), i = 1 .. 6), seq(x[i](0) = i, i = 1 .. 6)}, numeric, 'output' = Array([seq(0.1*i, i = 1 .. s)]));&lt;/p&gt;
&lt;p&gt;Then F[2, 1] is a matrix of calculated points (for all variables). For each variable to fit the function to it you have to extract two corresponding columns (of that matrix).&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>130473</guid>
      <pubDate>Wed, 08 Feb 2012 17:43:54 Z</pubDate>
      <itunes:author>Jarekkk</itunes:author>
      <author>Jarekkk</author>
    </item>
    <item>
      <title>Extraction</title>
      <link>http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray?ref=Feed:MaplePrimes:dsolve/numeric otput-array:Comments#comment130475</link>
      <itunes:summary>&lt;p&gt;Thanks for the answer.&lt;/p&gt;
&lt;p&gt;Basically I would like to know how to extract those data from the matrix F[2,1].&lt;/p&gt;
&lt;p&gt;How one can do that?&lt;/p&gt;
&lt;p&gt;Sorry for being not precise&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks for the answer.&lt;/p&gt;
&lt;p&gt;Basically I would like to know how to extract those data from the matrix F[2,1].&lt;/p&gt;
&lt;p&gt;How one can do that?&lt;/p&gt;
&lt;p&gt;Sorry for being not precise&lt;/p&gt;</description>
      <guid>130475</guid>
      <pubDate>Wed, 08 Feb 2012 18:14:29 Z</pubDate>
      <itunes:author>ABond</itunes:author>
      <author>ABond</author>
    </item>
    <item>
      <title>I am sorry.</title>
      <link>http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray?ref=Feed:MaplePrimes:dsolve/numeric otput-array:Comments#comment130485</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray#comment130475"&gt;@ABond&lt;/a&gt; I am sorry I should have written this before. F[2,1] is a matrix containg 7 columns (first for the independent variable and others representing the dependent variables).&lt;/p&gt;
&lt;p&gt;When you want the independet variable and the first dependent one (i.e. &lt;em&gt;t&lt;/em&gt; and &lt;em&gt;&lt;span&gt;x[1](t)) - &lt;/span&gt;&lt;/em&gt;&lt;span&gt;they are&lt;/span&gt; in the first two columns, so you can get them with:&lt;/p&gt;
&lt;p&gt;F[2, 1][1 .. s, [1, 2]];&lt;/p&gt;
&lt;p&gt;Then if you want e.g. &lt;em&gt;t&lt;/em&gt; and &lt;em&gt;x[2](t)&lt;/em&gt; (i.e. first and third column) you can type:&lt;/p&gt;
&lt;p&gt;F[2, 1][1 .. s, [1, 3]];&lt;/p&gt;
&lt;p&gt;and so on.&lt;/p&gt;
&lt;p&gt;Edit: If you want to look at how you can extract chosen rows or columns from a Matrix (or a Vector), see &lt;a href="http://www.maplesoft.com/support/help/view.aspx?path=LinearAlgebra/General/MVselect"&gt;?LinearAlgebra/General/MVselect&lt;/a&gt; . In the example above I used the interval for the row index (which means all the rows in that interval) and the list for the column index, because I only wanted the listed columns.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/130471-Dsolvenumeric-Otputarray#comment130475"&gt;@ABond&lt;/a&gt; I am sorry I should have written this before. F[2,1] is a matrix containg 7 columns (first for the independent variable and others representing the dependent variables).&lt;/p&gt;
&lt;p&gt;When you want the independet variable and the first dependent one (i.e. &lt;em&gt;t&lt;/em&gt; and &lt;em&gt;&lt;span&gt;x[1](t)) - &lt;/span&gt;&lt;/em&gt;&lt;span&gt;they are&lt;/span&gt; in the first two columns, so you can get them with:&lt;/p&gt;
&lt;p&gt;F[2, 1][1 .. s, [1, 2]];&lt;/p&gt;
&lt;p&gt;Then if you want e.g. &lt;em&gt;t&lt;/em&gt; and &lt;em&gt;x[2](t)&lt;/em&gt; (i.e. first and third column) you can type:&lt;/p&gt;
&lt;p&gt;F[2, 1][1 .. s, [1, 3]];&lt;/p&gt;
&lt;p&gt;and so on.&lt;/p&gt;
&lt;p&gt;Edit: If you want to look at how you can extract chosen rows or columns from a Matrix (or a Vector), see &lt;a href="http://www.maplesoft.com/support/help/view.aspx?path=LinearAlgebra/General/MVselect"&gt;?LinearAlgebra/General/MVselect&lt;/a&gt; . In the example above I used the interval for the row index (which means all the rows in that interval) and the list for the column index, because I only wanted the listed columns.&lt;/p&gt;</description>
      <guid>130485</guid>
      <pubDate>Wed, 08 Feb 2012 21:03:48 Z</pubDate>
      <itunes:author>Jarekkk</itunes:author>
      <author>Jarekkk</author>
    </item>
  </channel>
</rss>