convert a matrix to column vector
Ältere Kommentare anzeigen
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 Kommentare
Budoor Salem
am 21 Feb. 2021
Bearbeitet: Budoor Salem
am 21 Feb. 2021
Walter Roberson
am 21 Feb. 2021
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);
Akzeptierte Antwort
Weitere Antworten (1)
Kategorien
Mehr zu Data Types finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!