<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Loop to add values to Array</title>
    <link>http://www.mapleprimes.com/questions/35555-Loop-To-Add-Values-To-Array</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 09:39:25 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 09:39:25 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Loop to add values to Array</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Loop to add values to Array</title>
      <link>http://www.mapleprimes.com/questions/35555-Loop-To-Add-Values-To-Array</link>
    </image>
    <item>
      <title>Array</title>
      <link>http://www.mapleprimes.com/questions/35555-Loop-To-Add-Values-To-Array?ref=Feed:MaplePrimes:Loop to add values to Array:Comments#answer44255</link>
      <itunes:summary>&lt;p&gt;Use &lt;b&gt;Array &lt;/b&gt;instead of &lt;b&gt;array&lt;/b&gt;, with the first letter capitalized.&lt;/p&gt;
&lt;pre&gt;
A:=Array(1..3):
for i from 1 to 3 do
  A[i]:=f(i);
end do:
A;
                           [f(1) f(2) f(3)]

B:=Array(1..3,i-&amp;gt;f(i));
                         B:=[f(1) f(2) f(3)]
&lt;/pre&gt;
&lt;p&gt;See the help-page &lt;a href="http://www.maplesoft.com/support/help/AddOns/view.aspx?path=Array"&gt;?Array&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Use &lt;b&gt;Array &lt;/b&gt;instead of &lt;b&gt;array&lt;/b&gt;, with the first letter capitalized.&lt;/p&gt;
&lt;pre&gt;
A:=Array(1..3):
for i from 1 to 3 do
  A[i]:=f(i);
end do:
A;
                           [f(1) f(2) f(3)]

B:=Array(1..3,i-&amp;gt;f(i));
                         B:=[f(1) f(2) f(3)]
&lt;/pre&gt;
&lt;p&gt;See the help-page &lt;a href="http://www.maplesoft.com/support/help/AddOns/view.aspx?path=Array"&gt;?Array&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;acer&lt;/p&gt;</description>
      <guid>44255</guid>
      <pubDate>Tue, 09 Mar 2010 16:48:15 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
  </channel>
</rss>