Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Reorder elements of 1D matrix across separate rows in a new matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi guys,
I have a long matrix and I want to reorder elements using a specified point step, across separate rows of a new matrix.
For example, I have the attached Matrix=(1:7200) in size. In step 1, I want to take elements Matrix(1:10) and add them in the first row of a new New_Matrix. Then, in step 2, I want to take elements Matrix(1:20) and add them in the second row of the New_Matrix. In step 3, I want to take elements Matrix(1:30) and add them in the third row of the New_Matrix, and so on (using let's say always this 10 point step).
I have tried quite few different ways but it starts being convoluted as a process, so I thought to ask you as I am sure there is a more concise and efficient way to perform this.
Thank you,
George
2 comentarios
Akira Agata
el 26 de Abr. de 2019
How about the following way?
load('Matrix.mat');
sz = size(Matrix);
New_Matrix = repmat(Matrix,sz(2)/10,1);
for kk = 1:sz(2)/10
New_Matrix(kk,kk*10+1:end) = NaN;
end
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!