Repeating elements in a vector
1 回表示 (過去 30 日間)
古いコメントを表示
Furkan Sencer Kaçar
2023 年 10 月 20 日
コメント済み: Furkan Sencer Kaçar
2023 年 10 月 20 日
Hi, i want my following vector:
A = [0,1; 1; 5; 10; 20]
to be
A = [0,1; 1; 5; 10; 20;0,1; 1; 5; 10; 20;0,1; 1; 5; 10; 20; ... ]
(50 times repeated)
0 件のコメント
採用された回答
その他の回答 (1 件)
William Rose
2023 年 10 月 20 日
A = [0,1; 1; 5; 10; 20]
is not valid because it uses a comma as well as semicolons. I assume you meant to write
A = [0; 1; 1; 5; 10; 20];
Then do
A=repmat(A,50,1);
Check:
size(A)
OK.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!