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!