Column to matix In matlab
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Saki
am 9 Apr. 2024
Bearbeitet: cui,xingxing
am 27 Apr. 2024
I have 500 data points, i need a matix of 10 by 50 where, 1st 50 values will go to 1st row and 2nd 50 values in the 2nd row and continues. How can i do this in matlab
2 Kommentare
Akzeptierte Antwort
cui,xingxing
am 9 Apr. 2024
Bearbeitet: cui,xingxing
am 27 Apr. 2024
Example:
data = 1:500;
matrix = reshape(data,50,10)';
get the size of matrix
size(matrix)
preview matrix
head(matrix)
-------------------------Off-topic interlude, 2024-------------------------------
I am currently looking for a job in the field of CV algorithm development, based in Shenzhen, Guangdong, China,or a remote support position. I would be very grateful if anyone is willing to offer me a job or make a recommendation. My preliminary resume can be found at: https://cuixing158.github.io/about/ . Thank you!
Email: cuixingxing150@gmail.com
0 Kommentare
Weitere Antworten (1)
James Tursa
am 9 Apr. 2024
Depends on how your data is currently stored. Suppose the data is currently in a vector v. Then
matrix = reshape(v,50,10).'
0 Kommentare
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!