- To find array elements that meet a condition, use find in conjunction with a relational expression. For example, find(X<5) returns the linear indices to the elements in X that are less than 5.
- To directly find the elements in X that satisfy the condition X<5, use X(X<5). Avoid function calls like X(find(X<5)), which unnecessarily use find on a logical matrix.
- When you execute find with a relational operation like X>1, it is important to remember that the result of the relational operation is a logical matrix of ones and zeros. For example, the command [row,col,v] = find(X>1) returns a column vector of logical 1 (true) values for v.
Different output for find(X) and find(X<5)
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Whereas the command [row, col, val] = find(X) returns the original values of X in val, the command [row, col, val] = find(X>0) returns logical value in val. What is the reason behind such behaviors?
X = [4, 5, 6, 0, -1, 3, 0];
[row, col, val] = find(X)
[r, c, v] = find(X>0)
0 Kommentare
Akzeptierte Antwort
dpb
am 3 Dez. 2022
Bearbeitet: dpb
am 4 Dez. 2022
find returns the values of the input argument referenced by the returned indices into the (temporary) array. In the second case the argument is the logical array of X>0; the function works as if you had written
Y=(X>5);
[r, c, v] = find(Y);
because that is what happens internally; the argument expression is evaluated, then the operations are applied to that. The find documentation says this when reading it literally but leaves the explanation of using it to obtain what you're looking for (or, actually NOT using find() at all for this purpose to the Tips section. It addresses the above with the following
Tips
0 Kommentare
Weitere Antworten (3)
Torsten
am 3 Dez. 2022
find(X) lists the array elements of the double array X that are not equal 0.
find(X>0) lists the array elements of the logical array X>0 that are true.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!