<div dir="ltr"><div><div>My main objective is to index some elements of a given vector and then taking exponent.<br><br></div>Great Prof. Dirk. I have just minimized example and got the solution. I would like to share my minimized code. <br><br></div>Thank You all.<br><div><br>#include <RcppArmadillo.h><br>using namespace Rcpp;<br>using namespace RcppArmadillo;<br>//[[Rcpp::depends(RcppArmadillo)]]<br>//[[Rcpp::export]]<br><br>arma::vec sample(arma::vec alpha)<br>{<br>        int m = alpha.size();<br>        arma::uvec index(m);<br>        arma::vec a(m);<br>        for(int i=0; i<m; i++)<br>        {<br>                index(i) = i;<br>        }<br>        for(int i=0; i<m; i++)<br>        {<br>                arma::vec alpha1 = alpha.elem(find(index !=i));<br>                a(i) = exp(alpha1(0));<br>        }<br><br>        return a;<br>}<br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Sep 13, 2016 at 12:21 PM, Dirk Eddelbuettel <span dir="ltr"><<a href="mailto:edd@debian.org" target="_blank">edd@debian.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
On 12 September 2016 at 19:05, Avraham Adler wrote:<br>
| What exactly is it that you are trying to do?<br>
<br>
</span>Also review some resources on 'minimally reproducible example' as eg<br>
<br>
<a href="http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example" rel="noreferrer" target="_blank">http://stackoverflow.com/<wbr>questions/5963269/how-to-make-<wbr>a-great-r-reproducible-example</a><br>
<span class="HOEnZb"><font color="#888888"><br>
Dirk<br>
<br>
--<br>
<a href="http://dirk.eddelbuettel.com" rel="noreferrer" target="_blank">http://dirk.eddelbuettel.com</a> | @eddelbuettel | <a href="mailto:edd@debian.org">edd@debian.org</a><br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><em><font face="comic sans ms,sans-serif">Amina Shahzadi</font></em></div>
</div>