Matrices in a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
UGO mela
el 15 de Mayo de 2017
I have this matrix in which there are 9 different matrices each one is composed by 6 * 6 elements
I want pre and post multiply each matrix-elements in this way:
A is a matrix with the same size of R
P.S. : I have store R and A as a sparse matrices
How can I do?
Thanks
0 comentarios
Respuesta aceptada
David Goodmanson
el 15 de Mayo de 2017
Editada: David Goodmanson
el 15 de Mayo de 2017
Hi UGO, should your top row read R11, R12, R13? at any rate, try
z = zeros(size(A));
C = [A z z;z A z;z z A];
B = C.'*R*C
where C is a block diagonal matrix.
1 comentario
Más respuestas (1)
John
el 15 de Mayo de 2017
try
% if A is 6x6
A = rand(6);
A = repmat(A,3);
% if R is 18x18, constructed from multiple 6x6 sub Rij matrices
B = A'*R*A
0 comentarios
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!