Problem with combining .mat files
    2 views (last 30 days)
  
       Show older comments
    
Hi, I want to combine two .mat files that have the same matrice variables. The problem is when I combine them they are combined horizontally and I wish for them to be combined vertically.  
Ex : 
A (file1)=`
(222
111
333)
A(file2)=
(111
222
333)
Combined  = 
(222 111
111 222
333 333)
3 Comments
  Adam Danz
    
      
 on 21 Jun 2019
				To concatenate vertically, 
datacell1 = load('file1.mat');
datacell2 = load('file2.mat');
combined2.uu = [datacell1.uu; datacell2.uu];
combined2.vv = [datacell1.vv; datacell2.v
    %                       ^ semicolon
Answers (1)
See Also
Categories
				Find more on Workspace Variables and MAT Files in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

