bbci / bbci_public

MATLAB toolbox for Brain-Computer Interfacing (BCI)
MIT License
148 stars 104 forks source link

plot_scoreMatrix eats x units #197

Closed DanielMiklody closed 7 years ago

DanielMiklody commented 7 years ago

the xUnits of the input are not correctly plotted as there is an upper-case typo in line 89+90:

if isdefault.XUnit && isfield(epo_r, 'XUnit'), opt.XUnit= epo_r.XUnit; end

should be

if isdefault.XUnit && isfield(epo_r, 'xUnit'), opt.XUnit= epo_r.xUnit; end