We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd6e36b commit 125f9dcCopy full SHA for 125f9dc
lib/backprojection.m
@@ -29,9 +29,9 @@
29
30
dDistY = dRadius*cosd(dBeta - dPhi);
31
32
- nCurIdDctX = pos2id(dDistY, param.dDctX, param.nDctX) - param.dOffsetDctX + 1;
+ nCurIdDctX = pos2id(dDistY, param.dDctX, param.nDctX) - param.dOffsetDctX + 1;
33
34
- if (nCurIdDctX <= 1 || nCurIdDctX >= param.nDctX)
+ if (nCurIdDctX < 1 || nCurIdDctX > param.nDctX)
35
continue;
36
end
37
0 commit comments