I have a table with dimensions 6x2. I have other table with dimensions 4x1, I tried to append the little table into the larger one but I couldn't do it because of the differences in dimensions. Do you have any suggestion to tackle this?
Code example:
id = {'AB';'ZX';'DF4';'CA';'AC';'FG'}
mean = [1.5;2;3;1.15;3.06;1]
table1 = table(id,mean);
id2 = {'ZZ';'ZB';'FG';'4FA'};
table2 = table(id2);
table2.Properties.VariableNames = {'id'};
I will then calculate the mean of the last 4 rows using an average of the first 6.