Concat and display embedded arrays
Afficher commentaires plus anciens
Can anyone help me to understand why when I try to concat Array B, I can't see the rows (10) and cols (5).
A = [];
B = [];
for j = 1:10
for i=1:5
x=randi(3);
Ai = x;
A = [A;Ai];
end
B{j} = A';
B = [B; B{j}];
end
Thanks.
2 commentaires
Azzi Abdelmalek
le 1 Juin 2013
Is there any error message? What do you mean by : I can't see the rows (10) and cols (5)
Vineet Guru
le 1 Juin 2013
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Tables dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!