How to find a spesific value in a matrix?

1 Ansicht (letzte 30 Tage)
Ararat Cetinkaya
Ararat Cetinkaya am 20 Mai 2020
Bearbeitet: Ameer Hamza am 20 Mai 2020
I have an obstacles = [3,3; 3,4; 3,5; 4,3] matrix and I want to search [3,3] matrix in obstacles matrix and if this coordinates matches ı want to get 1 otherwise ı want to get 0 value.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 20 Mai 2020
Bearbeitet: Ameer Hamza am 20 Mai 2020
obstacles = [3,3; 3,4; 3,5; 4,3];
TF = ismember([3 3], obstacles, 'rows')
Result
>> TF
TF =
logical
1

Weitere Antworten (0)

Kategorien

Mehr zu Holidays / Seasons finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by