Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to use an index of a vector as a value in another matrix?

1 vue (au cours des 30 derniers jours)
Syed Fahad Hassan
Syed Fahad Hassan le 3 Août 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hi, I have a vector x=[1 1 2 2 3] and a matrix [1 3 ; 1 4 ; 2 3 ; 2 4]
The logic that I want to create says that the index of the latter of the similar values is extracted. Then, wherever the matrix has that value, that row becomes zero. For example, the indices of first two similar values in vector x are 1 and 2. I want those rows in the matrix that contains the value 2, should become zero. Same is the case for 3 and 4.
In the end, the matrix should only contain a single row i.e. [1 3]
  3 commentaires
Matthew Eicholtz
Matthew Eicholtz le 3 Août 2017
I think when you say "becomes zero", you mean "is removed", correct?
Syed Fahad Hassan
Syed Fahad Hassan le 4 Août 2017
Yes Matthew, I want the row to be removed

Réponses (3)

dpb
dpb le 3 Août 2017
>> x=[1 1 2 2 3] ;
>> m= [1 3 ; 1 4 ; 2 3 ; 2 4];
>> m(any(ismember(m,find(diff(x))),2),:)=[]
m =
1 3
>>

Alex Kerzner
Alex Kerzner le 3 Août 2017
I'm sure someone can come up with something more clever and efficient, but here's something hack-y that might give you some ideas for improvements. Assuming the matrix is called M :
repeats = [];
while ~isempty(x)
if numel(find(x == x(1))) >= 2 %If we have multiple of them
repeats(end+1) = max(find(x==x(1))); %add the largest index to the list
x(find(x==x(n))) = []; %remove all the duplicates
else
x(1) = []; %If no duplicates, just get rid of it
end
end
for r = repeats
[i,~] = find(M == r);
M(i,:) = [];
end

Matthew Eicholtz
Matthew Eicholtz le 3 Août 2017
How about this?
Assume you have the inputs:
x = [1,1,2,2,3];
y = [1,3; 1,4; 2,3; 2,4];
Then, you can find indices to remove by:
[~,ind,~] = unique(fliplr(x));
ind = length(x)-ind+1;
Then, remove the rows containing any of those indices:
y(any(ismember(y,ind),2),:) = [];
  1 commentaire
Matthew Eicholtz
Matthew Eicholtz le 3 Août 2017
Note, my approach will remove indices of values that exist only once in x (e.g., the 3). It is unclear from the question whether this should be allowed or not.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by