matrix value propagation along the rows
2 views (last 30 days)
Show older comments
Sanatjon Gofurov
on 5 Nov 2023
Commented: Sanatjon Gofurov
on 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 Comments
Accepted Answer
Bruno Luong
on 5 Nov 2023
Edited: Bruno Luong
on 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
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!