Compare each row of data with another vector data
Ältere Kommentare anzeigen
Hi all, I have two vectors each of two columns, different row length.
A B

I would like to check each row of A with each/all of B (they have different row lengths) and would like to assign '1' for each row A if its value falls in any of row B's values. I could able to achieve the answer in case of one column. Any help in this regard highly appreciated. I have include the data here.
Akzeptierte Antwort
Weitere Antworten (1)
Matt J
am 22 Nov. 2022
out=any(A(:,1)>=B(:,1).' & A(:,2)<=B(:,2).',2);
Kategorien
Mehr zu Startup and Shutdown finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!