Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
getting it in a matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Say I have 1000 values in a single column, how can I transform them into matrix in which I get first 20 values in first row and next 20 in the next row and so on in 1 column. Like basically 1 column and 50 rows?
0 Kommentare
Antworten (2)
Azzi Abdelmalek
am 4 Mai 2016
Bearbeitet: Azzi Abdelmalek
am 4 Mai 2016
reshape(A,20,[])'
1 Kommentar
CS Researcher
am 5 Mai 2016
Let x be the column vector. Try this:
modifiedX = reshape(x,numel(x)/20,20)';
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!