Community Profile

photo

Stephan Koehler


Last seen: 4 years ago Active since 2019

Followers: 0   Following: 0

Message

Statistics

  • First Review
  • First Submission
  • First Answer

View badges

Feeds

View by

Answered
Finding the indices of duplicate values in one array
A = [1 2 3 2 5 3] [v, w] = unique( A, 'stable' ); duplicate_indices = setdiff( 1:numel(A), w ) this should work too, and is e...

5 years ago | 9