Find entire rows in a matrix where a column value meets a certain condition
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
David Carver
am 19 Okt. 2016
Kommentiert: David Carver
am 19 Okt. 2016
I have a matrix (4columns, ~50000 rows) and I want a new matrix that will only return the (entire) rows (values, not row number) where column 4 = 101300 (to 4s.f).
Any help appreciated.
VLE1(ii,:)=[x1 x2 T P]
0 Kommentare
Akzeptierte Antwort
Guillaume
am 19 Okt. 2016
filteredmatrix = originalmatrix(round(originalmatrix(:, 4), 4, 'significant') == 101300, :);
is all that is needed.
Weitere Antworten (1)
Massimo Zanetti
am 19 Okt. 2016
Assume your 50000x4 matrix is A, this will remove all the rows such having 4th element = 101300:
A(A(:,4)~=101300,:)=[];
0 Kommentare
Siehe auch
Kategorien
Mehr zu Operating on Diagonal Matrices 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!