How the Corr matix is saved?

You can compress the matrix again using:
TfMat.TF = process_compress_sym(‘Compress’, R(:));

Or if you want to keep the full matrix:
TfMat.TF = R(:);
TfMat.Options.isSymmetric = 0;

Francois

1 Like