Call a matrix in a matrix

2 vues (au cours des 30 derniers jours)
Ellen
Ellen le 3 Fév 2014
Commenté : Ellen le 3 Fév 2014
Can you define a matrix A (3x6) consisting of matrices B (3x3) and C (3x3) and then call these in such a way that
A = [ B ; C ]
A (1) = B and A (2) = C
Or will you always have to write A(1:3,:) to get B?

Réponse acceptée

Amit
Amit le 3 Fév 2014
Modifié(e) : Amit le 3 Fév 2014
You can have cell like this:
B = rand(3);
C = rand(3);
A{1} = B;
A{2} = C;
  1 commentaire
Ellen
Ellen le 3 Fév 2014
Made my day! Thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by