string of binary to letters??

2 Ansichten (letzte 30 Tage)
amira hl
amira hl am 9 Jun. 2015
Kommentiert: amira hl am 9 Jun. 2015
Hi
This is my code:
bin
for i=1:size(bin,1)
for j=1:size(bin,2)
mot=num2str(bin(i,j));
bina(i,j)=mot;
end
end
bina
____________________________________________________________________________________________________________________
bin =
1 1 1 0 1 0 0
1 1 0 1 0 0 0
bina =
1110100
1101000
I want to convert this 'bina' or the 'bin' into the initial letters, which are "th". How can i do that?
Thank you
  2 Kommentare
Image Analyst
Image Analyst am 9 Jun. 2015
amira hl
amira hl am 9 Jun. 2015
ok i will thank you

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 9 Jun. 2015
Bearbeitet: Azzi Abdelmalek am 9 Jun. 2015
bin=[0 0 1 0 1 0;1 0 0 1 0 1]
a=cellstr(num2str(bin)),
bina=strrep(a,' ','')

Weitere Antworten (1)

James Tursa
James Tursa am 9 Jun. 2015
char(bin2dec(char(bin+'0')))'

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by