Info
This question is closed. Reopen it to edit or answer.
how can i get output
    3 views (last 30 days)
  
       Show older comments
    
input sample: x=[43 03 00 10]
output sample: y= 43030010
how can i get this output ???
0 Comments
Answers (3)
  Azzi Abdelmalek
      
      
 on 16 Jan 2013
        
      Edited: Azzi Abdelmalek
      
      
 on 16 Jan 2013
  
      x= [43 3 0 10]
y=[]
for k=1:numel(x)
  y=[y num2str(x(k))];
end
y=str2num(y);
%or
    y=str2num(cell2mat(arrayfun(@num2str,x,'un',0)))
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


