Extracting multiple matrix from a single matrix
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Vishnu Kant
le 8 Sep 2018
Réponse apportée : Walter Roberson
le 8 Sep 2018
I have a matrix(type double) similar to the following example:
X = [ 23 3 5 1;
21 45 8 1;
65 56 7 1;
71 42 4 2;
45 91 5 2;
34 6 1 3;
87 37 8 3;
23 3 5 3]
Based on the element of the fourth column I want to get 3 matrix from the above matrix like the following example;
A=[ 23 3 5 1;
21 45 8 1;
65 56 7 1; ]
B =[ 71 42 4 2;
45 91 5 2; ]
C =[ 34 6 1 3;
87 37 8 3;
23 3 5 3;]
Basically I want to seprate all the 1s,2s and 3s of the fourth column into another matrix. How can I do it in the Matlab!
0 commentaires
Réponse acceptée
Walter Roberson
le 8 Sep 2018
A = X( X(:,4) == 1, :);
B = X( X(:,4) == 2, :);
C = X( X(:,4) == 3, :);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!