I have a long integer (ie 10001000110...) and an array with double values (ie {.5,.76,.34,...}) and I would like to loop through the binary representation of my integer and multiply each each digit with its corresponding place in my array and add it all together (matrix multiplication):
so like: 1*.5+0*.76+0*.34.....
whats best way to do this in C?
Thanks
array[0]value? When you say 'long integer', do you meanlong int(akalong), or are you talking about some 'BigNum' representation for the integer? How do you know how many digits are in the long integer. What if the long integer is a 32-bit unsigned value but the highest bit set is bit 16; do the bit elements of the array multiply a fixed position in the 32-bit (unsigned long integer) value, or is it relative to the first bit set? – Jonathan Leffler Dec 11 '11 at 20:51