MATLAB: Convert the contents of array to char

convert

hi everybody i want convert content of array to char. for example for 'h'
bin=[0,0,0,1,0,1,1,0];
>> char(bin2dec(num2str(bin)))
but, this does not work. can anyone help me? thanks

Best Answer

s = char(bin+'0')