2, 1, and 6 are the first 3 elements of the double array A and I want only them to be 1 in the resulting logical array B (and zero for the rest).
converting a double array to a logical array conditionally
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Matt Talebi
am 16 Jun. 2015
Kommentiert: Matt Talebi
am 16 Jun. 2015
Double array A is [2 1 6 7 3 5 4]. How can I convert it to a logical array in a way to get 1 for the first (for example) 3 elements and 0 for the rest. i.e., B = [1 1 0 0 0 1 0]. I apologize for the very basic nature of this question but unfortunately couldn't find any answer for it!
2 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 16 Jun. 2015
Bearbeitet: Andrei Bobrov
am 16 Jun. 2015
A = [2 1 6 7 3 5 4];
B = ismember(sort(A),A(1:3));
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Logical 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!