Group all the columns every N rows
Mostrar comentarios más antiguos
Hi everyone,
i have an array like this:
A
0.5 0.4 0.5
0.9 0.3 0.5
0.5 0.5 0.1
0.5 0.4 0.2
0.9 0.8 0.2
0.3 0.5 0.2
and i want to create a cell arrays like these (group all the columns every N rows, with N=2):
{A1}
0.5 0.4 0.5
0.9 0.3 0.5
{A2}
0.5 0.5 0.1
0.5 0.4 0.2
{A3}
0.9 0.8 0.2
0.3 0.5 0.2
How can i do it?
Thank you very much!
Respuesta aceptada
Más respuestas (1)
madhan ravi
el 24 de En. de 2019
Editada: madhan ravi
el 24 de En. de 2019
One way:
N=2;
[~,c]=size(A);
U=reshape(A',c,N,[]);
R=permute(U,[2 1 3])
4 comentarios
Riccardo Rossi
el 29 de En. de 2019
madhan ravi
el 29 de En. de 2019
reshape(a,numel(a)/2,[])' % where a your array
Riccardo Rossi
el 29 de En. de 2019
madhan ravi
el 29 de En. de 2019
I see you have asked another question regarding this issue but here is one solution:
N=4;
[m,c]=size(A);
U=reshape(A',m,[],N);
R=permute(U,[1 3 2]);
BB=reshape(R,N,[],1)'
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!