Hello team,
What does the 80000000-7FFFFFFF range of the input and output format mean? and what's that "GLOBAL_Q" format?
0358.svgen_dq.pdf
Regards,
Carlo
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello team,
What does the 80000000-7FFFFFFF range of the input and output format mean? and what's that "GLOBAL_Q" format?
0358.svgen_dq.pdf
Regards,
Carlo
You can refer the following
/cfs-file/__key/communityserver-discussions-components-files/171/6136.IQmath_5F00_Quickstart.pdf
You can also search this E2E forum for more info.
Hello Ramesh,
Could you please share what is the meaning of this range 80000000-7FFFFFFF? What actual decimal values are represented there?
Regards,
Carlo
These are 32 bit numbers. Its MSB represents its sign. 0000 0000 through 7FFF FFFF represents all positive numbers from 0, 1 ,2,...., ((2^31)-1). Negative numbers start from FFFF FFFF, FFFF FFFE,......., 1000 0000. In signed domain, FFFF FFFF represents -1 and 1000 0000 represents -2^31. If you subtract 1 from 0, you get -1. You can see the same thing happen here, it will result in a carry bit as well which is not of concern for the scope of this discussion.
Hello Ramesh,
Does 8000000 - 7FFFFFFF means (2^31 - (2^31)-1) ? That's 2,147,483,648 to 2,147,483,647 ?
Regards,
Carlo