<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, creating labels for equations generated using for loop</title>
    <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated</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:33:00 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 14:33:00 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, creating labels for equations generated using for loop</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, creating labels for equations generated using for loop</title>
      <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated</link>
    </image>
    <item>
      <title>FAQ</title>
      <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated?ref=Feed:MaplePrimes:creating labels for equations generated using for loop:Comments#answer103001</link>
      <itunes:summary>&lt;p&gt;It was asked and answered &lt;a href="http://www.mapleprimes.com/questions/95005-How-To-Create-Labels-For-Each-Result"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;PS. This link can be found by the "labels in loop" search in MaplePrimes.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;It was asked and answered &lt;a href="http://www.mapleprimes.com/questions/95005-How-To-Create-Labels-For-Each-Result"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;PS. This link can be found by the "labels in loop" search in MaplePrimes.&lt;/p&gt;</description>
      <guid>103001</guid>
      <pubDate>Sat, 26 Mar 2011 01:22:21 Z</pubDate>
      <itunes:author>hirnyk</itunes:author>
      <author>hirnyk</author>
    </item>
    <item>
      <title>Second version</title>
      <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated?ref=Feed:MaplePrimes:creating labels for equations generated using for loop:Comments#answer103020</link>
      <itunes:summary>&lt;p&gt;How about the following?&lt;/p&gt;
&lt;p&gt;&amp;gt; for i to 5 do A[i] := sum(c[2*j+1]*t^(2*(i-j))/factorial(2*(i-j)), j = 0 .. i) end do:&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&amp;gt; A[2];&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; 1/24*c[1]* t^4&amp;nbsp; + 1/2 *c[3]* t^2&amp;nbsp; + c[5]&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;How about the following?&lt;/p&gt;
&lt;p&gt;&amp;gt; for i to 5 do A[i] := sum(c[2*j+1]*t^(2*(i-j))/factorial(2*(i-j)), j = 0 .. i) end do:&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&amp;gt; A[2];&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; 1/24*c[1]* t^4&amp;nbsp; + 1/2 *c[3]* t^2&amp;nbsp; + c[5]&lt;/p&gt;</description>
      <guid>103020</guid>
      <pubDate>Sat, 26 Mar 2011 12:54:36 Z</pubDate>
      <itunes:author>hirnyk</itunes:author>
      <author>hirnyk</author>
    </item>
    <item>
      <title>How to show them in the output itself ?</title>
      <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated?ref=Feed:MaplePrimes:creating labels for equations generated using for loop:Comments#answer103142</link>
      <itunes:summary>&lt;p&gt;If i do this , i still get the output as a set of expressions without any labels...But this helps if i want to call them else where by using the A[i] label....&lt;/p&gt;
&lt;p&gt;What i want is that , when the loop is executed and the results are printed i want them to be like the following :&lt;/p&gt;
&lt;p&gt;a[1] = ......&lt;/p&gt;
&lt;p&gt;a[2] = ......&lt;/p&gt;
&lt;p&gt;and so on&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;If i do this , i still get the output as a set of expressions without any labels...But this helps if i want to call them else where by using the A[i] label....&lt;/p&gt;
&lt;p&gt;What i want is that , when the loop is executed and the results are printed i want them to be like the following :&lt;/p&gt;
&lt;p&gt;a[1] = ......&lt;/p&gt;
&lt;p&gt;a[2] = ......&lt;/p&gt;
&lt;p&gt;and so on&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>103142</guid>
      <pubDate>Mon, 28 Mar 2011 21:32:31 Z</pubDate>
      <itunes:author>elango8</itunes:author>
      <author>elango8</author>
    </item>
    <item>
      <title>Suggestion</title>
      <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated?ref=Feed:MaplePrimes:creating labels for equations generated using for loop:Comments#answer103143</link>
      <itunes:summary>&lt;p&gt;If you treat a[i]= ... as labels, then how about this?&lt;/p&gt;
&lt;p&gt;for i to 5 do a[i] = sum(c[2*j+1]*t^(2*(i-j))/factorial(2*(i-j)), j = 0 .. i)&lt;br&gt;&amp;nbsp;end do;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;If you treat a[i]= ... as labels, then how about this?&lt;/p&gt;
&lt;p&gt;for i to 5 do a[i] = sum(c[2*j+1]*t^(2*(i-j))/factorial(2*(i-j)), j = 0 .. i)&lt;br&gt;&amp;nbsp;end do;&lt;/p&gt;</description>
      <guid>103143</guid>
      <pubDate>Mon, 28 Mar 2011 21:59:17 Z</pubDate>
      <itunes:author>hirnyk</itunes:author>
      <author>hirnyk</author>
    </item>
    <item>
      <title>Thanks</title>
      <link>http://www.mapleprimes.com/questions/102995-Creating-Labels-For-Equations-Generated?ref=Feed:MaplePrimes:creating labels for equations generated using for loop:Comments#answer103144</link>
      <itunes:summary>&lt;p&gt;Yeah it worked, i was trying the same with " := " which assigns the value , and didnt try " = "...thanks for pointing it&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Yeah it worked, i was trying the same with " := " which assigns the value , and didnt try " = "...thanks for pointing it&lt;/p&gt;</description>
      <guid>103144</guid>
      <pubDate>Mon, 28 Mar 2011 22:04:03 Z</pubDate>
      <itunes:author>elango8</itunes:author>
      <author>elango8</author>
    </item>
  </channel>
</rss>