<div>Hi all,</div>
<div> </div>
<div>I only filled the entries in the upper triangular part of the matrix, however, I got  0 when I tried to get the value of some entry in the lower triangular part.</div>
<div> </div>
<div>Here's how I do it:</div>
<div> </div>
<div><font>
<p>MatCreate(PETSC_COMM_WORLD, &A); </p>
<p>MatSetSizes(A, PETSC_DECIDE, PETSC_DECIDE, n, n); </p>
<p>MatSetType(A, MATSEQSBAIJ); </p>
<p>MatSetUp(A); </p>
<p>// I set the value for the entry at (0, 2)</p><font>
<p>int i = 2, j = 0;</p>
<p>MatGetValues(A,1,&i,1,&j,values);</p>
<p> </p>
<p>Any help is highly appreicated.</p>
<p> </p>
<p>Yifei</p></font></font></div>