<div dir="ltr"><div>Thanks Matt and Jed. After further analysis, it turns out that the operation I must perform is even more complicated than what I initially described. So direct assembly seems to be the only option. I ended up using MatGetRow and MatSetValues.</div>

<div><br></div><div><br></div><div><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jul 17, 2014 at 10:53 AM, Matthew Knepley <span dir="ltr"><<a href="mailto:knepley@gmail.com" target="_blank">knepley@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Jul 17, 2014 at 6:35 AM, Italo Tasso <span dir="ltr"><<a href="mailto:bichinhoverde@spwinternet.com.br" target="_blank">bichinhoverde@spwinternet.com.br</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div>I have two matrices: matrix A is 4n x 4n and matrix C is n x n. I want to set the values of A using the values of C, like this:<br>


</div><div><br></div><div>A[4i+k][4j+k] = C[i][j]</div><div>0 < i < n</div>

<div>0 < j < n</div><div>0 < k < 3</div><div><br></div><div>How can I do this efficiently?</div></div>
</blockquote></div><br>The best way to do it is to assemble directly into the big matrix. You can do this by explicitly</div><div class="gmail_extra">translating indices, or use something like this</div><div class="gmail_extra">


<br></div><div class="gmail_extra">  <a href="http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Mat/MatGetLocalSubMatrix.html" target="_blank">http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Mat/MatGetLocalSubMatrix.html</a></div>


<div class="gmail_extra"><br></div><div class="gmail_extra">  Thanks,</div><div class="gmail_extra"><br></div><div class="gmail_extra">     Matt<span class=""><font color="#888888"><br clear="all"><div><br></div>-- <br>What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br>


-- Norbert Wiener
</font></span></div></div>
</blockquote></div><br></div></div>