Skip to content

SimMEEG 2.1.1

Latest
Compare
Choose a tag to compare
@branelab branelab released this 09 Nov 17:51
· 15 commits to master since this release
a9141cf

Bug fix
bl_calc_SNR.m - line26
accidentally used "log" instead of "log10" thus SNR values were incorrect with respect to dB
original code: SNR_dB = 20log(std(mean(data(:,act_samps,:),3),[],2)./std(mean(data(:,ctrl_samps,:),3),[],2));
new code: SNR_dB = 20
log10(std(mean(data(:,act_samps,:),3),[],2)./std(mean(data(:,ctrl_samps,:),3),[],2));