Is my understanding correct w.r.t Q format.
- signed Q15.1 format means, 15 bits for fractional and 1 for integer bits SO max range is - 2^15 / 2^15 to + (2 ^ 15 - 1) / 2^15
- signed Q7.0 means, 7 bits for fractional and 0 for integer bits, So max range is -2^7/2^7 to + 2^7 - 1 / 2^7
- signed Q7.1 means, 7 bits for fractional and 1 for integer bits, So max range is -2^7/2^6 to + 2^7 - 1 / 2^6
signed Q7.2 means, 7 bits for fractional and 2 bits for integer so max range is -2^7 / 2^5 to + 2^7 - 1 / 2^5
Also, how sign bit is defined for all the above. for ex Q15.1(15 fractional, 1 integer, what about sign bit since already we reached 16 bits)
Also Can you help me in providing good links for Q format to get familiar with that.