Is there an easy way to retrieve matrix data by row and column? So I could do something like this to store values in an array:<br><br>Real(8) :: BO(1000,1000)<br>...<br>DO j=1, dbcsr_nblkcols_total(matrix_a)<br>    DO i=1, dbcsr_nblkrows_total(matrix_a)<br>         dbcsr_function(matrix_a, i, j, data)<br>         BO(i,j)=data<br>    ENDDO<br>ENDDO<br>