problems with matrix splitting
Mostrar comentarios más antiguos
Hello everyone, I want to split the matrix in such a way that when elements of 1st column are equal, the correspnding elements can be splitted into another matrix. For example, i have the following matrix.
A = [ 1 2; 1 3; 1 4; 2 1; 2 4].
i want to get the following 2 matrices as the resulting matrices.
a1 = [2;3;4] and a2= [1;4]
i have just started learning the looping in MATLAB, your coperation will be highly appreciated.
Respuesta aceptada
Más respuestas (1)
Stephen23
el 22 de Ag. de 2016
Use accumarray:
out = accumarray(A(:,1),A(:,2),[],@(v){v})
1 comentario
pradeep kumar
el 22 de Ag. de 2016
Categorías
Más información sobre Loops and Conditional Statements 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!