필터 지우기
필터 지우기

Concat and display embedded arrays

조회 수: 2 (최근 30일)
Vineet Guru
Vineet Guru 2013년 6월 1일
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
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
Vineet Guru 2013년 6월 1일
No there is no error. The output is: B =
[1x5 double]
[1x10 double]
[1x15 double]
[1x20 double]
[1x25 double]
[1x30 double]
[1x35 double]
[1x40 double]
[1x45 double]
[1x50 double]
[1x50 double]
The output should be:
B =
2 3 1 3 1
1 3 2 2 1
3 1 2 3 3
etc..

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 1일
편집: Azzi Abdelmalek 2013년 6월 1일
B = [];
for j = 1:10
A = [];
for i=1:5
x=randi(3);
A=[A;x];
end
B =[B;A']
end
  댓글 수: 1
Vineet Guru
Vineet Guru 2013년 6월 1일
Ahh... why was I going around in circles...
Thanks for your help.
Much appreciated!!!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by