MATLAB: Get character value from decimal

decimal to char

get character value from decimal
rbi = (dec2bin(rb,1))';
rbin = reshape(rbi,siz,8);
txt = (bin2dec(rbin))';
txt is decimal value needs its character... tried
char(txt) still incorrect result

Best Answer

txt = char( (bin2dec(rbin))' );