I have a matrix like this
1 2 3 4 5 6 7 8
2 3 4 1 2 3 4 5
1 2 3 4 1 1 1 1
1 2 3 5 4 2 2 1
I want to separate those rows having first four entries as 1 2 3 4, as in above case I separate out row 1 and row three.

 Accepted Answer

Aletta Wilbrink
Aletta Wilbrink on 9 Feb 2018
Edited: Aletta Wilbrink on 9 Feb 2018
Probably not the most efficient way, but this works
b = a(a(:,1)==1 & a(:,2) == 2 & a(:,3) == 3 & a(:,4) == 4,:)
Where a is the name of your matrix

2 Comments

Ammy
Ammy on 9 Feb 2018
Thank you very much.
Seeing Guillaume's answer, a better way is
b = a(all(a(:,1:4) == [1 2 3 4],2),:)

Sign in to comment.

More Answers (1)

Guillaume
Guillaume on 9 Feb 2018
%R2016b or later:
tokeep = all(A(:, 1:4) == [1 2 3 4], 2)
%earlier versions
tokeep = all(bsxfun(@eq, A(:, 1:4), [1 2 3 4]), 2)
%then
A(tokeep, :)

4 Comments

Kurt
Kurt on 21 Feb 2023
Edited: Kurt on 22 Feb 2023
(Corrected) How do you make this work if the matrix contains cells?
This question was about extracting elements from a matrix, not from a table containing cell arrays. You should start a new question and provide example data and what you want to do with the data, including any code you have tried (along with the results you expect and what you are getting instead, if applicable).
The question is simply "How to filter rows?"
Anyway, I found the answer I needed. To filter rows of cells (not numerics) you can either read your data in as a table or convert your matrix to a table. Then use this one-liner:
output_data = input_data(table2array(input_data(:,col)) == "pattern",:);
where "col" is the column number you are filtering on.
There may be other approaches, but this works for me.
I'm glad you figured it out.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!