matrix value propagation along the rows
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Bruno Luong
2023 年 11 月 5 日
編集済み: Bruno Luong
2023 年 11 月 5 日
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
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!