split the matrix into two
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Berfin Çetinkaya
el 29 de Mzo. de 2022
Comentada: Berfin Çetinkaya
el 29 de Mzo. de 2022
Hello everyone
I have a matrix. And I want to split this matrix into two matrices, but there's a rule.
It needs to get 1,3,5 columns to create the first matrix. It needs to get columns 2,4,6 .. to create the second matrix. (My real matrix is a very large 50x138 matrix, but I'll show it with a small example.)
Sample :
1 4 8 7 5 9
2 7 5 6 4 3
8 7 6 5 5 1
new A matrix :
1 8 5
2 5 4
8 6 5
new B matrix :
4 7 9
7 6 3
7 5 1
Thank u for help.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Murugan C
el 29 de Mzo. de 2022
odd_Mat = A(:,1:3:end); % Odd column matrix extraction
even_mat = A(:,2:2:end); % Even column matrix extraction
Ver también
Categorías
Más información sobre Logical 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!