From: tiziana Franchin on
Dear all,
I've a 31x256871 matrix and I need the correlation coefficients, but the size exceeds the maximum allowed.
Where can I download a MATLAB script for solving this resctriction?
Thank you
From: Roger Stafford on
"tiziana Franchin" <tiziana.franchin(a)opbg.net> wrote in message <i1ii14$p5q$1(a)fred.mathworks.com>...
> Dear all,
> I've a 31x256871 matrix and I need the correlation coefficients, but the size exceeds the maximum allowed.
> Where can I download a MATLAB script for solving this resctriction?
> Thank you
- - - - - - - - -
Have you taken into consideration how large the resulting correlation matrix would be? If not, I would strongly advise you to do so.

Roger Stafford
From: Tom Lane on
> I've a 31x256871 matrix and I need the correlation coefficients, but the
> size exceeds the maximum allowed.
> Where can I download a MATLAB script for solving this resctriction?

MATLAB computes correlations among the rows. On the off chance that you
really want correlations among the columns, you could transpose the matrix
before passing it into corrcoef.

-- Tom