Clear Filters
Clear Filters

Search for values in a matrix

6 views (last 30 days)
I'd like to search the first two columns of a matrix for a specific value and then return the whole row for any that match. Thanks in advance.

Accepted Answer

Walter Roberson
Walter Roberson on 9 Sep 2022
Edited: Walter Roberson on 13 Sep 2022
mask = any(YourMatrix(:, 1:2)==SearchValue,2);
subset = YourMatrix(mask, :) ;

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!