<?xml version="1.0" encoding="UTF-8"?>










<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">
    <channel>
        <title>Math Forum</title>
        <link>http://mathforum.org/kb</link>
        <description>List of forum topics</description>
        <language>en</language>


        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8127239&amp;tstart=0#8127239</link>

        

            <description><![CDATA[On 21/01/2013 05:05, Bob Hanlon wrote:<br><font color="#660066">&gt; rr = {};<br>&gt; For[a = 2, a&lt;  6, a++,<br>&gt;      For[b = 2, b&lt;  6,]]></description>

        

            <jf:creationDate>Jan 22, 2013 11:18:34 PM</jf:creationDate>
            <jf:modificationDate>Jan 22, 2013 11:18:34 PM</jf:modificationDate>
            <jf:author>dave@removedbailey.co.uk</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8120949&amp;tstart=0#8120949</link>

        

            <description><![CDATA[hello i am new to mathmatica.i have the following problem if anyone could help.<br><br>For[a = 2, a &lt; 6, a++,<br> 	For[b = 2, b &lt; 6, b++,<br>]]></description>

        

            <jf:creationDate>Jan 22, 2013 2:40:01 AM</jf:creationDate>
            <jf:modificationDate>Jan 22, 2013 2:40:01 AM</jf:modificationDate>
            <jf:author>Alexei.Boulbitch@iee.lu</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116199&amp;tstart=0#8116199</link>

        

            <description><![CDATA[In[5]:= rr={};For[a=2,a&lt;6,a++,For[b=2,b&lt;6,b++,AppendTo[rr,a^b]]]<br><br><br>rr<br><br>Out[6]=]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:21 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:21 AM</jf:modificationDate>
            <jf:author>adriano.pascoletti@uniud.it</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116198&amp;tstart=0#8116198</link>

        

            <description><![CDATA[The correct name is AppendTo, not Appendto. You should start by defining the empty list rr, and then AppendTo rr consecutively, i.e..<br>In[4]:=]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:16 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:16 AM</jf:modificationDate>
            <jf:author>tgarza10@msn.com</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116209&amp;tstart=0#8116209</link>

        

            <description><![CDATA[<br>There are some errors here<br>1. The function name is AppendTo (with capital T) - Mathematica is case<br>sensitive<br>2. Even this would not]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:11 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:11 AM</jf:modificationDate>
            <jf:author>bsyehuda@gmail.com</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116207&amp;tstart=0#8116207</link>

        

            <description><![CDATA[Hi Paolo,<br>I think that you have two errors.<br>The first is that AppendTo has a capital T<br>The second is that you need to initialise rr outside]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:11 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:11 AM</jf:modificationDate>
            <jf:author>nigel.king@cambiumnetworks.com</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116205&amp;tstart=0#8116205</link>

        

            <description><![CDATA[Paolo,<br><br>Welcome to Mathematica!<br><br>You made two basic errors in your code:<br><br> (1) At each pass through the inner loop, rr gets reset]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:11 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:11 AM</jf:modificationDate>
            <jf:author>murray@math.umass.edu</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116203&amp;tstart=0#8116203</link>

        

            <description><![CDATA[rr = {};<br>For[a = 2, a &lt; 6, a++,<br>    For[b = 2, b &lt; 6, b++,<br>      AppendTo[rr, a^b]]]<br><br>rr<br><br>Or<br><br>rr = Table[a^b, {a, 2,]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:11 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:11 AM</jf:modificationDate>
            <jf:author>hanlonr357@gmail.com</jf:author>
            <jf:replyCount>1</jf:replyCount>
        </item>

        <item>
            <title>Re: problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116197&amp;tstart=0#8116197</link>

        

            <description><![CDATA[maybe this is what you want<br><br>rr={};<br>For[a = 2, a &lt; 6, a++,<br> 	For[b = 2, b &lt; 6, b++,<br>  rr = Appendto[rr,]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:11 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:11 AM</jf:modificationDate>
            <jf:author>chris.arthur1@gmail.com</jf:author>
            <jf:replyCount>0</jf:replyCount>
        </item>

        <item>
            <title>problem with append</title>
        
            <link>http://mathforum.org/kb/thread.jspa?messageID=8116213&amp;tstart=0#8116213</link>

        

            <description><![CDATA[ <br>]]></description>

        

            <jf:creationDate>Jan 21, 2013 12:07:10 AM</jf:creationDate>
            <jf:modificationDate>Jan 21, 2013 12:07:10 AM</jf:modificationDate>
            <jf:author></jf:author>
            <jf:replyCount>9</jf:replyCount>
        </item>


    </channel>
</rss>

