convert a matrix to column vector
Show older comments
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 Comments
Budoor Salem
on 21 Feb 2021
Edited: Budoor Salem
on 21 Feb 2021
Walter Roberson
on 21 Feb 2021
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);
Accepted Answer
More Answers (1)
Categories
Find more on Data Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!