How can I extract multiple rows from an array at regular intervals?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mcb001
el 11 de Ag. de 2023
If I have a simple 72x10 array, how can I make a new array that is made up of the first 6 rows, then miss the next 6, then take the next 6 etc. to the end.
If the main array was A, I know B = A(1:6:end,:)would extract me every 6th row for example, but I want to take a 6-row selection of rows. Output B should be 36x10 (i.e. halved in row length)
0 comentarios
Respuesta aceptada
Adam Danz
el 11 de Ag. de 2023
Create demo matrix A
A = (1:72)'.*ones(1,10)
size(A)
Extract rows 1:6, 13:18, ...
q = 6;
idxMat = reshape(1:q*floor(height(A)/q),q,[]);
idx = idxMat(:,[1:2:end]);
B = A(idx,:)
size(B)
0 comentarios
Más respuestas (1)
Bruno Luong
el 11 de Ag. de 2023
Movida: Adam Danz
el 11 de Ag. de 2023
No need for reshape and repmat, etc...
A = reshape(1:720, 72, 10);
B = A((0:12:66) + (1:6)', :) % 66 is size(A,1)-6
0 comentarios
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!