Split array into equal parts

I have a matrix A of size 1x816.
I need to split into 1x8 matrices in this way:
1:8
9:16
17:24 and so on..up to 816.
What is the best way to do so?

Respuestas (1)

James Tursa
James Tursa el 15 de Feb. de 2021

4 votos

You could reshape it and then access by columns. E.g.,
R = reshape(A,8,[]);
Then A(:,1) is the first 8 values, A(:,2) is the second 8 values, etc.

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 15 de Feb. de 2021

Comentada:

el 16 de Feb. de 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by