convert a matrix to column vector
古いコメントを表示
I woule like to convert a matrix [31,6000] to a cloumn vector
31 rows and 6000 column
to one column vector
please advice
2 件のコメント
Budoor Salem
2021 年 2 月 21 日
編集済み: Budoor Salem
2021 年 2 月 21 日
Walter Roberson
2021 年 2 月 21 日
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);
採用された回答
その他の回答 (1 件)
カテゴリ
ヘルプ センター および File Exchange で Data Types についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!