check whether a number belongs to an array or not
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Jan
il 28 Dic 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 Commenti
Anuchit Wibun
il 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
il 7 Mar 2017
Modificato: Walter Roberson
il 8 Mar 2017
l_array = [A,B,C];
res = ismember(5,l_array);
disp(res)
ha ha
il 30 Mar 2018
@Jan. Can you teach me how to run FEX: anyEq. as you mentioned? Thanks
James Tursa
il 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
Categorie
Scopri di più su Whos in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!