Join Matrices in MATLAB
问题 I have two matrices like the following ones: '01/01/2010' 1 '02/01/2010' 2 '03/01/2010' 3 '05/01/2010' 11 '06/01/2010' 17 '01/01/2010' 4 '02/01/2010' 5 '04/01/2010' 6 '05/01/2010' 7 , and after doing a few tricky things in MATLAB, I want to create the following three matrices: '01/01/2010' 1 4 '02/01/2010' 2 5 '03/01/2010' 3 NaN '04/01/2010' NaN 6 '05/01/2010' 11 7 '06/01/2010' 17 NaN '01/01/2010' 1 4 '02/01/2010' 2 5 '05/01/2010' 11 7 Any idea on how to join these tables? Cheers. EDIT: