Hi Douglas,<br><br>Thank you for the reply. That clarifies quite a bit.<br>But still, it does not explain the different behavior of those examples, does it? One moment ago, I was thinking that the L suffix might have made it constant and hence can&#39;t be modified. Looks like I am wrong. (And fun(1:3) gives the same result too.)<br>
<br>Zhongyi<br><br><div class="gmail_quote">On Fri, Aug 5, 2011 at 3:49 AM, Douglas Bates <span dir="ltr">&lt;<a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im">On Fri, Aug 5, 2011 at 5:27 AM, Zhongyi Yuan &lt;<a href="mailto:yuanzygoso@gmail.com">yuanzygoso@gmail.com</a>&gt; wrote:<br>
&gt; Dear useR&#39;s,<br>
&gt;<br>
&gt; After I found Rcpp a few days ago, I&#39;ve been very excited collecting<br>
&gt; documents for learning. But still I find myself understand little.<br>
&gt; Here&#39;s a question I want you to help me with.<br>
&gt;<br>
&gt; In page 17 of Dirk and Romain&#39;s slides from part2 of the Apr 28 Rcpp<br>
&gt; workshop (here&#39;s a link:<br>
&gt; <a href="http://dirk.eddelbuettel.com/papers/rcpp_workshop_part_2_details.pdf" target="_blank">http://dirk.eddelbuettel.com/papers/rcpp_workshop_part_2_details.pdf</a>), I<br>
&gt; can&#39;t figure out why the two examples behave differently.<br>
&gt; And also, why are people using 1L:3L? What not just 1:3?<br>
<br>
</div>It happens that they are the same but only because 1:3 generates an<br>
integer sequence by default.  Most of the time 1 gives a double<br>
precision floating point number whereas 1L is an integer.  Those with<br>
long-time experience in writing R code tend to use the L when they<br>
know that an integer is wanted, just to bypass the conversion step.<br>
<div class="im"><br>
&gt; Maybe I am asking silly question? But please do help me. I couldn&#39;t find an<br>
&gt; answer on google.<br>
&gt; Thank you.<br>
&gt;<br>
&gt; Best,<br>
&gt; Zhongyi<br>
&gt;<br>
&gt;<br>
</div>&gt; _______________________________________________<br>
&gt; Rcpp-devel mailing list<br>
&gt; <a href="mailto:Rcpp-devel@lists.r-forge.r-project.org">Rcpp-devel@lists.r-forge.r-project.org</a><br>
&gt; <a href="https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel" target="_blank">https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel</a><br>
&gt;<br>
&gt;<br>
</blockquote></div><br>