MATLAB: Adding Matrices to struct

for loopmatricesstruct

Hello
I have this code and it saves the matrices in the struct, but it only saves it in the first column, I want it to save it in both columns as you can see in the picture.
I am also attaching the code
n = 2 ;
M = cell(n, 2) ;
for k = 1 : n
A = [1 2 3; 4 5 6;7 8 9];
M{k} = A ;
end
fields = {'IndivualStiffnessMAtrix','IndivualStiffnessMAtrix2'};
v =cell2struct(M,fields,n)
julian5.JPG

Best Answer

solution
n = 2 ;
M = cell(n, 2) ;
for k = 1 : n
A = [1 2 3; 4 5 6;7 8 9];
M{k,1} = A ;
M{k,2} = A ;
end
fields = {'IndivualStiffnessMAtrix','IndivualStiffnessMAtrix2'};
v =cell2struct(M,fields,n)