This solution is working like a charm and an effective way to convert hex to bin. unfortunately I am now with the second part of the task, the bitwise AND i tried eval = bwa ( bin1 * bin2) e.g. bin1 = 0000000000000000000000011011 bin2 = 0001000000000000000000000000 the expected result should be 0000000000000000000000000000 but the result from the eval function is 1101100000000000000000000000 maybe the detour via binary numbers is wrong approach or the operation not correct. do you have an idea?
... View more