Matrices in a matrix
Show older comments
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
Accepted Answer
More Answers (1)
John
on 15 May 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
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!