append sections of column by n rows to subsequent column
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i have a 1032x1 single column matrix where i need to move every 43 rows to the next column and so on, with the first section to be appended starting at row 44
many thanks,
0 Kommentare
Antworten (1)
Ameer Hamza
am 5 Jan. 2021
You can use reshape()
v; % 1032x1 vector
M = reshape(v, 43, [])
1 Kommentar
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!