t[i+1] = (ds>=D?1:(ds<=−D?−1:0));
we got this expression for calculating a transfer digit array.
but X = (4,-5,3,6) Y= (1,-2,3,6)
but on page 18 we got transfer digit as = [(0, −1, 1, 1, 0)] but when calculating by self I am getting [0,0,-1,1,1]
t[0] = 0;
t[1] = 4+1>=6 false ...> 5<= -6 false then 0
t[2] = -5-2 >= 6 false ...> -7<=-6 true then -1
t[3] = 3+3>=6 true then 1
t[4] = 6+6>=6 true then 1.
can you clarify this