check whether a number belongs to an array or not
Show older comments
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?
Accepted Answer
More Answers (1)
Jan
on 28 Dec 2011
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 Comments
Anuchit Wibun
on 4 Feb 2015
Hello K. Jan Simon
assume i have many group of array that i want to check it contain 5 whether or not ha within loop. For example: first time, i check A array that it contain 5 yes or not and next, i check B and C, respectively. How i can modify your code? please show sample.
A = [1 10 12 5 4 15 29];
B = [2 23 5 19 28 1 3];
C = [23 5 1 6 29 9];
Thank you every much
Wasikar
on 7 Mar 2017
Edited: Walter Roberson
on 8 Mar 2017
l_array = [A,B,C];
res = ismember(5,l_array);
disp(res)
ha ha
on 30 Mar 2018
@Jan. Can you teach me how to run FEX: anyEq. as you mentioned? Thanks
James Tursa
on 30 Mar 2018
- 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
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!