Borrar filtros
Borrar filtros

Reshaping a a matrix

2 visualizaciones (últimos 30 días)
Dam
Dam el 10 de En. de 2014
Comentada: Dam el 10 de En. de 2014
Good evening, I have the following question pleas suppose I hava a matrix: [1 2 3 4 5 6 ; 7 8 9 10 11 12] (2*6) i want to reshape it to get the following matrix [1 2 7 8; 3 4 9 10 ; 5 6 11 12](3*4) Thank you in advance

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 10 de En. de 2014
Editada: Azzi Abdelmalek el 10 de En. de 2014
a=[1 2 3 4 5 6 ; 7 8 9 10 11 12]
[n,m]=size(a);
b=reshape(a',m,1,[]);
c=permute(reshape(b,2,[],size(b,3)),[2 1 3]);
out=c(:,:)
%or
a=[1 2 3 4 5 6 1 0; 7 8 9 10 11 12 44 55] ;
b=permute(reshape(a',2,size(a,2)/2,[]),[2 1 3]);
out=b(:,:)
  1 comentario
Dam
Dam el 10 de En. de 2014
Thank you so much :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Risk Management Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by