How can I create a matrix of N columns formed by just one vector?
8 ビュー (過去 30 日間)
古いコメントを表示
Hi! If I have a vector like (5 8 7 9 8 4 7)' how can I create a matrix of N (for example 1000) columns formed by this vector? Thank you!
0 件のコメント
採用された回答
Ahmet Cecen
2015 年 4 月 23 日
編集済み: Ahmet Cecen
2015 年 4 月 23 日
for a row vector concatenated vertically:
A=repmat(vector,[1000 1]);
for a column vector concatenated horizontally:
A=repmat(vector,[1 1000]);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!