check whether a number belongs to an array or not
조회 수: 1,087 (최근 30일)
이전 댓글 표시
hi all, i want to check a number in the array.i have created an array and i want to know that a whether a perticular number belongs to the array or not. is there any inbuild function for "belongs to" in matlab. can anybody help me?
댓글 수: 0
채택된 답변
Walter Roberson
2011년 12월 28일
ismember()
Note: if you are not using purely whole numbers, then please read http://matlab.wikia.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_.28or_similar.29_not_equal_to_zero.3F
댓글 수: 5
Walter Roberson
2018년 3월 30일
Note: later versions of MATLAB added ismembertol() for dealing with floating point numbers.
추가 답변 (1개)
Jan
2011년 12월 28일
A = floor(rand(100, 100) * 1000);
contains5 = any(A(:) == 5);
If the array is large and the searched element is found early, Matlab wastes a lot of time by searching the rest of the array. Then this C-Mex is faster: FEX: anyEq.
댓글 수: 4
James Tursa
2018년 3월 30일
- Download the code from the provided link
- Compile the code at the command line:
mex anyEq.c -largeArrayDims
- Use the function like any other function. For help on syntax,
help anyEq
참고 항목
카테고리
Help Center 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!