二进制输出格式

时间:2012-03-14 09:39:04

标签: matlab

  

可能重复:
  Output in Vector form

嗨我在我的代码中有以下部分程序,它提供如下输出,但我希望以下格式输出

ciphertxt='nilesh';
    disp(ciphertxt);
  %%%  b1=dec2bin(ciphertxt,8)
  %%%  disp(b1)
  l=length(ciphertxt);
  for i=1:l
      t=ciphertxt(i); 
      n=abs(t);
      b1=dec2bin(n,8);
      disp(b1);
    end

output

nilesh
01101110
01101001
01101100
01100101
01110011
01101000

我试过celldata=reshape(b1,1,[])假设我会把所有东西都排在一排但不能得到例外情况。请给我指路

Desired output-
Required as string
'01101110 01101001 01101100 01100101 01110011 01101000'

每8位后我需要空间

0 个答案:

没有答案