Concat and display embedded arrays
古いコメントを表示
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 件のコメント
Azzi Abdelmalek
2013 年 6 月 1 日
Is there any error message? What do you mean by : I can't see the rows (10) and cols (5)
Vineet Guru
2013 年 6 月 1 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Simulink Check についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!