finds {pracma} | R Documentation |
find function (Matlab Style)
Description
Finds indices of nonzero elements.
Usage
finds(v)
Arguments
v |
logical or numeric vector or array |
Details
Finds indices of true or nonzero elements of argument v
;
can be used with a logical expression.
Value
Indices of elements matching the expression x
.
Examples
finds(-3:3 >= 0)
finds(c(0, 1, 0, 2, 3))
[Package pracma version 2.4.4 Index]