So, I am new to MatLab and I am trying something of which I am sure it is possible. I'm not sure how though.
Here's what I'm trying in a nutshell: I generate a string of outcomes (M) from matrix C. Matrix C consists of 16 cells (4x4 cells, each cell is 90x6). From each of these cells I try to compute the mean value. This gives me the mean values, but rewrites M after each iteration:
for i=1:4;
for j=1:4;
M=mean2(C{i,j})
end
end
What I need is a matrix of 4x4 wherein the mean values for all of C's cells are listed, how do I do that?