matrix value propagation along the rows
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sanatjon Gofurov
am 5 Nov. 2023
Kommentiert: Sanatjon Gofurov
am 8 Nov. 2023
Hello,
A(1,1:7) vector and I want a mtrix where A is repeated in B matrix 19 rows B(1:19,1:7).
Matlab sims to have issues with B(1:19,:)=A, or B(1:19,1:7)=A.
So idea is A = [1 2 3 4 5 6 7]
and resulting
B = [
1 2 3 4 5 6 7
1 2 3 4 5 6 7
1 2 3 4 5 6 7
...
] (in 19 rows)
BR
Sanat
0 Kommentare
Akzeptierte Antwort
Bruno Luong
am 5 Nov. 2023
Bearbeitet: Bruno Luong
am 5 Nov. 2023
Any of these should do
A = [1 2 3 4 5 6 7]
B(1:19,1:7)=repmat(A,19,1)
B(1:19,1:7)=repelem(A,19,1)
B(1:19,1:7)=A(ones(1,19),:)
for r=1:19
B(r,:) = A;
end
B
Weitere Antworten (1)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!