huppertt / nirs-toolbox

Toolbox for fNIRS analysis
86 stars 61 forks source link

Update snirf2data.m #28

Closed alainapearce closed 3 months ago

alainapearce commented 1 year ago

there was a '+' rather than a space in line 206 that was causing matlab to output the unicode characters rather than stored strings. changed line from:

snirf.nirs(i).probe.(posLabelField){j}=[posCapital+'-' num2str(j)];

to:

snirf.nirs(i).probe.(posLabelField){j}=[posCapital '-' num2str(j)];