Why, when doing a for loop to form a column from an array, does it give me 0 values except for the last element?

1 Ansicht (letzte 30 Tage)
I need to form a column from a matrix, so that each row becomes a column, for example if I have a matrix of size mx3 [X Y Z, A B C, 1 2 3], I need it to be (3 * m) x1 [X, Y, Z, A, B, C, 1,2,3], I tried doing this with a double for loop, but it only returns zeros except for the last element. Following the previous example it would be [0,0,0,0,0,0,0,0,3]
[m,n]=size(IncECEF);
N=n;
M=m;
for I=1:N;
for Q=1:M;
Lo(N+3*(M-1),1)=IncECEF(M,N);
end
end
I don't understand why it happens, I think that each iteration overwrites the Lo matrix, writing the element of each iteration and thus deleting the previous ones, but I don't know if that is the cas

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 18 Feb. 2021
Bearbeitet: Fangjun Jiang am 18 Feb. 2021
most likely, change to
Lo(I+3*(Q-1),1)=IncECEF(Q,I)
And do you know this?
A=magic(5);
B=A'
C=B(:)

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 18 Feb. 2021
reshape(IncECEF.',[],1)
no loop needed

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by