Hi,
I am facing some problems with bitwise operators in PL/SQL. The formula i have is : (((x[0]<<8)+x[1])/128) where x[0]=FF. The correct output value is "-.01". I have translated the formula as (((x[0] * POWER(2, 8))+x[1])/128), but i am not able to get the float output.
Thanks in advance for the help.
- Milind
I am facing some problems with bitwise operators in PL/SQL. The formula i have is : (((x[0]<<8)+x[1])/128) where x[0]=FF. The correct output value is "-.01". I have translated the formula as (((x[0] * POWER(2, 8))+x[1])/128), but i am not able to get the float output.
Thanks in advance for the help.
- Milind