Relative Content

Tag Archive for c#expber

Getting BER Value (exp – float) from Hex value

I Have an HEX value of 0x4995
which I know it is converted to this value: 4.050000e-13 (BER – Bit Error Rate)(float),
I need help to understand the algorithm for this conversion,
from little research I made I know that i need to extract from the HEX value the positive/negative value, and then the exp value of the result and also something called Mantissa.

C# Code for getting BER Value from Hex value

I Have an HEX value of 0x4995
which I know it is converted to this value: 4.050000e-13 (float),
I need help to understand the algorithm for this conversion,
from little research I made I know that i need to extract from the HEX value the positive/negative value, and then the exp value of the result and also something called Mantissa.

C# Code for getting BER Value from Hex value

I Have an HEX value of 0x4995
which I know it is converted to this value: 4.050000e-13 (float),
I need help to understand the algorithm for this conversion,
from little research I made I know that i need to extract from the HEX value the positive/negative value, and then the exp value of the result and also something called Mantissa.