<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p>If I understand your query correctly, I think numpy could do it,
      first by flattening the matrices to simple vectors, and then
      calculating the correlation between those, e.g.</p>
    <p>np.corrcoef(np.array(matrix1).flatten(),
      np.array(matrix2).flatten())</p>
    <p>... assuming you're using the matrix datatype. If they are
      vanilla 2D arrays, then you shouldn't need to recast:<br>
    </p>
    <p>np.corrcoef(matrix1.flatten(), matrix2.flatten())</p>
    <p>best,</p>
    <p>Brian</p>
    <p><br>
    </p>
    <div class="moz-cite-prefix">On 28/10/16 20:44, David Soto wrote:<br>
    </div>
    <blockquote
cite="mid:CAPeRSSW8gGwdwkyZfbq2S2MCzfN2+=V5aWBSVZc7yR012FVVEQ@mail.gmail.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=windows-1252">
      <div dir="ltr">
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large;color:#000000">hi, </div>
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large;color:#000000"><br>
        </div>
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large;color:#000000">I
          wonder whether PyMVPA can compute a similarity index
          (correlation) between two 2D matrices, each comprised of 12
          seconds & 300 voxels?</div>
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large;color:#000000"><br>
        </div>
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large;color:#000000">thanks!</div>
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large;color:#000000">david</div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Pkg-ExpPsy-PyMVPA mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Pkg-ExpPsy-PyMVPA@lists.alioth.debian.org">Pkg-ExpPsy-PyMVPA@lists.alioth.debian.org</a>
<a class="moz-txt-link-freetext" href="http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-exppsy-pymvpa">http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-exppsy-pymvpa</a></pre>
    </blockquote>
    <br>
  </body>
</html>