How to merge cells together?
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    andrew
 el 6 de Mayo de 2014
  
    
    
    
    
    Respondida: Jos (10584)
      
      
 el 13 de Mayo de 2014
            How do I merge cells together and separate each cell with a ';'?
0 comentarios
Respuesta aceptada
  José-Luis
      
 el 6 de Mayo de 2014
        
      Editada: José-Luis
      
 el 13 de Mayo de 2014
  
      Two alternatives, since I am not exactly sure what you want.
a = num2cell(randi(10,10,10));
your_mat = cell2mat(a);
your_mat_alt = [a{:}];
2 comentarios
  José-Luis
      
 el 13 de Mayo de 2014
				 A=[ {'1'},{'1'},{'1'},{'1'},{'0'},{'1'},{'0'},{'1'}];
 unique_cell = {sprintf('%s;',A{:})};
Please accept an answer if it helped you.
Más respuestas (1)
  Jos (10584)
      
      
 el 13 de Mayo de 2014
        Another option using STRCAT
A = {'apple.doc', 'apple.xlsx', 'apple.csv', 'banana.doc', 'banana.xlsx'}
B = strcat(A,';') 
C = [B{:}]
0 comentarios
Ver también
Categorías
				Más información sobre Logical en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


