check whether a number belongs to an array or not
1.085 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
biswajita lenka
am 28 Dez. 2011
Kommentiert: Walter Roberson
am 30 Mär. 2018
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 Kommentare
Akzeptierte Antwort
Walter Roberson
am 28 Dez. 2011
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 Kommentare
Walter Roberson
am 30 Mär. 2018
Note: later versions of MATLAB added ismembertol() for dealing with floating point numbers.
Weitere Antworten (1)
Jan
am 28 Dez. 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 Kommentare
James Tursa
am 30 Mär. 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
Siehe auch
Kategorien
Mehr zu Function Creation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!