charlie n - 2014-12-23

Hi all.
I am new in using EIDORS. I would like to know if it is possible to change the numbering of the electrodes from clockwise to anticlockwise in EIDORS?
here is the line of code that i am using.
for j=0:15
c = [j mod(j+1, 16) mod(j+15, 16)];
c = c+1;
v = [v; v_raw_m(setxor(c, 1:16), j+1)];
caldata = [caldata; caldata_m(setxor(c, 1:16), j+1)];
end
how can i modify it so that the electrodes will be number anticlockwise? or is there another way of doing it?
Thanks in advance!!!