i want to concatenate some data from n files into one matrix after a loop. Now the following codes work, but how can i add all the date_1, date_2,.....,date_n into date?
date_1 = cell2mat (data{1,1}{1,1});
date_2 = cell2mat (data{1,2}{1,1});
date = [date_1;date_2];
Thanks. --Jackie
date_1,date_2look like? Are they strings, vectors, matrices? Same size or not?