How do you create a matrix of matrices?

74 vues (au cours des 30 derniers jours)
Matlabbber
Matlabbber le 24 Sep 2020
Commenté : Matlabbber le 24 Sep 2020
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

Réponse acceptée

Matt J
Matt J le 24 Sep 2020
Modifié(e) : Matt J le 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}
  1 commentaire
Matlabbber
Matlabbber le 24 Sep 2020
perfect, exactly what I wanted, thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by