how to merge two matrix into single matrix . two matrix is of size 270x13 into single matrix of 270x26 .this can be done by merging the cells alternatively.a=[1 2 3 4],b=[5 6 7 8],c=[1 5 2 6 3 7 4 8].is there any command available in matlab.help me .
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    kavitha subramaniam
 il 27 Ott 2014
  
    
    
    
    
    Commentato: kavitha subramaniam
 il 27 Ott 2014
            a=[1 2 3 4 5 6] b=[7 8 9 10 11 12] resultant matrix: c=[1 7 2 8 3 9 4 10 5 11 6 12]
Risposta accettata
  Mischa Kim
    
      
 il 27 Ott 2014
        
      Modificato: Mischa Kim
    
      
 il 27 Ott 2014
  
      Use
 a = [1 2 3 4 5 6]; b = [7 8 9 10 11 12];
 c = reshape([a;b],1,[])
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!