Function to check whether an array contains a duplicate of elements

조회 수: 19 (최근 30일)
Mina
Mina 2021년 7월 11일
댓글: Walter Roberson 2023년 7월 21일
I want to write a function that
- Takes as input an array, the value being checked and the starting element of the array where checking for a duplicate should start
- Returns a logical value to indicate whether the array contains a duplicate of the value being checked (stops checking when one is found)
  댓글 수: 2
the cyclist
the cyclist 2021년 7월 11일
편집: the cyclist 2021년 7월 11일
Is this a homework assignment? What have you tried yourself? Maybe we can help your learn MATLAB, rather than do your work for you.

댓글을 달려면 로그인하십시오.

답변 (1개)

dpb
dpb 2021년 7월 11일
편집: dpb 2021년 7월 12일
function flag=isduplicate(x,v,ix)
flag=numel(find(x(ix:end)==v))>1;
end
x is vector or if x is array in linear addressing order.
Otherwise, need indexing expression of row, colum, ... for as many dimensions as are greater > 1 in size(x)
If x is floating point, then for robustness, consider ismembertol instead of exact equality or write a tolerance expression.
  댓글 수: 3
Walter Roberson
Walter Roberson 2023년 7월 21일
Note that this might not behave as expected if there are NaN in the array.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by