I have a matrix in Matlab and want to find the indeces of all rows, where some of the columns meet a specific criteria.
Example
M = 1 5
R = (M(:,3) == 10 & M(:,4) == 14);
should be sufficient.