How do you create a matrix of matrices?

70 views (last 30 days)
I have nine 10*10*10 matrices that I am looking to store in one 3*3 matrix (call it A) and am not sure how to do so. I am looking so that if you call say A(3,3) the last 10*10*10 matrix is the result. Please advise

Accepted Answer

Matt J
Matt J on 24 Sep 2020
Edited: Matt J on 24 Sep 2020
Put your 10x10x10 arrays in cells
Example:
>> A{3,3}=rand(10,10,10)
A =
3×3 cell array
{0×0 double} {0×0 double} { 0×0 double}
{0×0 double} {0×0 double} { 0×0 double}
{0×0 double} {0×0 double} {10×10×10 double}

More Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!