I have to multiply an integer value by 2^31. I have googled it, and it looks like doubles have a range among 2.23e-308 <= |X| <= 1.79e308 when using 64 bits, and a float among 1.18e-38 <= |X| <= 3.40e38.
That's a lot more than what I need. But it doesn't work.
I have this constant value in my header file:
static const float SCALE_FACTOR = 2^-31;
and if then I just do:
float dummy = SCALE_FACTOR;
Then, dummy's value is 11.
I don't know if the problem is assigning a constant value like that, but I don't know how else to write it without losing precision.
Any help?
EDIT:Sorry, stupid question. My MatLab background betrayed me and forgot that ^ is not for exponentiation in C++. I have voted to close.
^is the operator for bit-wise exclusive OR. Use2e-31to assign a value of 2x10^-31, orpow(2,-31)for 2^-31. – jarmond Nov 14 '12 at 12:37^is the bitwise exclusive or operator, not the exponentiation operator. – hvd Nov 14 '12 at 12:37