Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
b='101';
if(b(1)==0)
d=bin2dec(b(2:3));
else
d=bin2dec(b(2:3))-3;
end
function [y] = sbin2dec(x)
if(x(1)==0)
y = bin2dec(x(2:end));
else
y = bin2dec(x(2:end)) - 2 ^ (length(x) - 1);
end
A somewhat old post, but shouldn't it be something like
Code:function [y] = sbin2dec(x) if(x(1)==0) y = bin2dec(x(2:end)); else y = bin2dec(x(2:end)) - 2 ^ (length(x) - 1); end