Maintain shape of logical index mask
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Garima Sharma
am 12 Jun. 2017
Kommentiert: Garima Sharma
am 13 Jun. 2017
I have a matrix A=[1,2,3;4,5,6]. From this, I want to remove (by row), z=[1,5], to return the matrix B=[2,3;4,6]. I'm trying to use logical indexing to do this, but that returns a vector instead of the matrix B.
if true
B=A(A~=z(:,1))
end
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 12 Jun. 2017
Bearbeitet: Andrei Bobrov
am 12 Jun. 2017
Aout = A';
Aout = reshape(Aout(Aout ~= z(:)'),[],2)';
or
Aout = A';
Aout = reshape(Aout(~ismember(Aout,z)),[],2)';
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and 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!