Я же написал выше, что при выборе дробного формата CORDIC ожидает на входе fixed point (2.N). Это и есть дробное число в дополнительном коде, только целая часть занимает два бита (включая знаковый), поскольку диапазон входных чисел
включает +1. Если бы +1 не входила в диапазон, то был бы простой знаковый формат (1.N).
ВВот кусок из даташита где это написано
Цитата
A XQN format number is an 1+X+N bit 2’s complement binary number; a sign bit followed by X integer
bits followed by an N bit mantissa (fraction). XQN format can be used to express numbers in the range
( -2X ) to ( 2X - 2(-N) ). An equivalent notation using the MathWorks® Fix format, defined as
Fixword_length_fractional_length, would be Fix(1+X+N)_N.
A number using Q15 format is equivalent to a number using Fix16_15 representation, and a number in
1Q15 format is equivalent to a number using Fix17_15 representation.
Там ведь даже пример дан.