I need to do many binary calculations of the form:
10.1^(1/11) base 2
10.001^(1/11) base 2
10.0001^(1/11) base 2
10.00001^(1/11) base 2
10.000001^(1/11) base 2
...
where 1/11 base 2 = 1/3 base 10.
I don't want to use bin2dec and dec2bin for binary. I want to do calculations like in DEC, without worrying about the cumbersome functions. So how can I do the binary calculations in Octave?