Skip to content

Commit c7d3ef0

Browse files
committed
make pixToDeg output non rounded values
1 parent 3e818ba commit c7d3ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/pixToDeg.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
pix = getfield(structure, fieldName); %#ok<GFLD>
2525

2626
structure = setfield(structure, [strrep(fieldName, 'Pix', '') 'DegVA'], ...
27-
floor(pix / cfg.screen.ppd)); %#ok<SFLD>
27+
pix / cfg.screen.ppd); %#ok<SFLD>
2828

2929
end

0 commit comments

Comments
 (0)