Filter löschen
Filter löschen

Extracting multiple matrix from a single matrix

2 Ansichten (letzte 30 Tage)
Vishnu Kant
Vishnu Kant am 8 Sep. 2018
Beantwortet: Walter Roberson am 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!

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Sep. 2018
A = X( X(:,4) == 1, :);
B = X( X(:,4) == 2, :);
C = X( X(:,4) == 3, :);

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by