[83caed]: / findOrChg.m

Download this file

10 lines (8 with data), 174 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
function orChg = findOrChg(orientation,prevOr)
orChg = orientation-prevOr;
if orChg >= 90
orChg = orChg-180;
elseif orChg <= -90
orChg = orChg+180;
end
end