The problem I run into while doing that is that "copy_dbcsr_to_fm" uses a  cp_dbcsr_obj  not a  dbcsr_obj  which I used to create my matrix, is there a way around this?<br><br>-Adam<br><br>On Wednesday, August 1, 2012 2:46:29 AM UTC-6, jgh wrote:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;">Hi
<br>
<br>have a look into " copy_dbcsr_to_fm ", fm = full matrix.
<br>
<br>Most of the complexity is from the distributed memory of both
<br>types.
<br>Using the fm type (see cp_fm_type.F) is rather easy.
<br>
<br>Juerg 
<br>
<br>------------------------------<wbr>------------------------------<wbr>--
<br>Juerg Hutter                         Phone : ++41 44 635 4491
<br>Physical Chemistry Institute   FAX   : ++41 44 635 6838
<br>University of Zurich               E-mail:  <a href="mailto:hut...@pci.uzh.ch" target="_blank">hut...@pci.uzh.ch</a>
<br>Winterthurerstrasse 190
<br>CH-8057 Zurich, Switzerland
<br>------------------------------<wbr>------------------------------<wbr>---
<br>
<br>-----<a href="mailto:cp...@googlegroups.com" target="_blank">cp...@googlegroups.com</a> wrote: -----
<br>To: <a href="mailto:cp...@googlegroups.com" target="_blank">cp...@googlegroups.com</a>
<br>From: Adam 
<br>Sent by: <a href="mailto:cp...@googlegroups.com" target="_blank">cp...@googlegroups.com</a>
<br>Date: 07/31/2012 08:10PM
<br>Subject: [CP2K:3953] Quick DBCSR matrix question
<br>
<br>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>  
<br>  -- 
<br> You received this message because you are subscribed to the Google Groups "cp2k" group.
<br> To view this discussion on the web visit <a href="https://groups.google.com/d/msg/cp2k/-/xM51PeOeEDAJ" target="_blank">https://groups.google.com/d/<wbr>msg/cp2k/-/xM51PeOeEDAJ</a>.
<br>  To post to this group, send email to <a href="mailto:cp...@googlegroups.com" target="_blank">cp...@googlegroups.com</a>.
<br> To unsubscribe from this group, send email to <a href="mailto:cp2k%2Bun...@googlegroups.com" target="_blank">cp2k+unsubscribe@googlegroups.<wbr>com</a>.
<br>  For more options, visit this group at <a href="http://groups.google.com/group/cp2k?hl=en" target="_blank">http://groups.google.com/<wbr>group/cp2k?hl=en</a>.
<br>   </blockquote>