Skip to content

Commit

Permalink
Merge pull request #204 from stephaniebrandl/normalizeTFData
Browse files Browse the repository at this point in the history
bug fix regarding channelwise computation
  • Loading branch information
svendaehne authored Mar 6, 2017
2 parents 2845d43 + adcc58d commit 35f73d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processing/proc_normalizeTimeFrequencyData.m
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
[opt, isdefault]= opt_setDefaults(opt, props);
opt_checkProplist(opt, props);

nC = size(dat,3);
nC = size(dat.x,3);
switch(lower(opt.Pos)),
case 'beginning_exact', % [-150 0] = 15 samples not 16 (at fs= 100 Hz)
% len= round(diff(ival)/1000*dat.fs);
Expand Down

0 comments on commit 35f73d8

Please sign in to comment.