Filter löschen
Filter löschen

Concat and display embedded arrays

2 Ansichten (letzte 30 Tage)
Vineet Guru
Vineet Guru am 1 Jun. 2013
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 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 1 Jun. 2013
Is there any error message? What do you mean by : I can't see the rows (10) and cols (5)
Vineet Guru
Vineet Guru am 1 Jun. 2013
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..

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 1 Jun. 2013
Bearbeitet: Azzi Abdelmalek am 1 Jun. 2013
B = [];
for j = 1:10
A = [];
for i=1:5
x=randi(3);
A=[A;x];
end
B =[B;A']
end
  1 Kommentar
Vineet Guru
Vineet Guru am 1 Jun. 2013
Ahh... why was I going around in circles...
Thanks for your help.
Much appreciated!!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by