Skip to content

Commit

Permalink
missing indexing operation when calculating range of fixations in deg…
Browse files Browse the repository at this point in the history
…rees
  • Loading branch information
dcnieho committed Dec 7, 2018
1 parent 589f80c commit ec841e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/I2MC/getFixStats.m
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
end
if ~isempty(pixperdeg)
% value in degrees visual angle
rangeX = rangeX/pixperdeg;
rangeY = rangeY/pixperdeg;
rangeX(a) = rangeX(a)/pixperdeg;
rangeY(a) = rangeY(a)/pixperdeg;
end
end

0 comments on commit ec841e0

Please sign in to comment.