Hello,
I was wondering if there was an easy way to re-order the channel when displaying correlation matrix, for example here displaying HbO, then HbR then HbT ?
or only HbO or HbR …
Edouard
This is not possible to do on the GUI.
Thought, there is this script to do it:
reorder_conn_nxn.m
% Export NxN connectivity node in tree as Matlab variable "connMat"
connMatNew = connMat;
% Verify it is NxN
if ~isequal(connMat.RowNames, connMat.RefRowNames)
error('Names for rows and columns MUST be the same')
end
nSignal = length(connMat.RowNames);
% Expand connectivity matrix (add back redundant elements)
This file has been truncated. show original
1 Like