Effacer les filtres
Effacer les filtres

how to get common elements of matrix based on another matrix?

2 vues (au cours des 30 derniers jours)
lucksBi
lucksBi le 5 Jan 2018
Commenté : lucksBi le 5 Jan 2018
hey all
how to get common elements of array1 based on 'rows' array?
array1 = {[1,5,7,2];[1,4,6,2];[1,4,5]}
rows = {[2,3];[1,3];[1,2]}
result{1,1} = {[];[1,2];[1,5]} % compare row1 with row1 in array1 then row1 with row2 then row1 with row3
result{2,1} = {[1,2];[];[1,4]} % compare row2 with row1 in array1 then row2 with row2 then row2 with row3
result{3,1} = {[1,5];[1,4];[]} % compare row3 with row1 in array1 then row3 with row2 then row3 with row3
if we consider rows{1,1} then comparision will be between row 1 and other rows in aaray1 and so on.
  11 commentaires
lucksBi
lucksBi le 5 Jan 2018
Yes i have tried it but it compares elements of array1 with 'row' Like first comparison gives 2 As 2 is present in first row of array1 and same for others.
lucksBi
lucksBi le 5 Jan 2018
@Birdman @Guillaume Thanks to both of you for giving time to my query. I am accepting the more close answer to what i wanted. Thank You

Connectez-vous pour commenter.

Réponse acceptée

Guillaume
Guillaume le 5 Jan 2018
Still don't know what the actually result should be since you haven't explained why row 1 is compared to itself when it's not in rows. Ignoring this, and just comparing row i to the rows listed in rows{i} this will work:
result = cellfun(@(ar, r) arrayfun(@(rr) intersect(ar, array1{rr}), r, 'UniformOutput', false), array1, rows, 'UniformOutput', false)
result is a cell array the same size as rows and array1. Each cell of result is itself a cell array the same size as rows{i}.
  1 commentaire
lucksBi
lucksBi le 5 Jan 2018
Yes its closer to what i want. Thank You so much for your time.

Connectez-vous pour commenter.

Plus de réponses (1)

Birdman
Birdman le 5 Jan 2018
One approach(with a for loop):
for j=1:size(rows,1)-1
for i=1:size(array1,1)
result{i,j}=array1{i}(ismember(array1{i},rows{i}(j)));
end
end
Note: the ones with no intersect are eliminated, therefore the result is 3x2 cell.
  7 commentaires
Birdman
Birdman le 5 Jan 2018
Well, your question is hard to understand and my answer is almost the same what you wanted, so whether taking and modifying it or not is totally up to you.
lucksBi
lucksBi le 5 Jan 2018
Yes i am trying to modify it. Thanks alot

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by