1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
% $Id: find.Rd 25 2022-05-30 18:46:01Z proebuck $
\name{find}
\alias{find}
\title{MATLAB find function}
\description{
Finds indices of elements.
}
\usage{
find(x)
}
\arguments{
\item{x}{expression to evaluate}
}
\details{
If expression is not logical, finds indices of nonzero elements of
argument \code{x}.
}
\value{
Returns indices of corresponding elements matching the expression \code{x}.
}
\author{
P. Roebuck \email{proebuck1701@gmail.com}
}
\examples{
find(-3:3 >= 0)
find(c(0, 1, 0, 2, 3))
}
\keyword{logic}
\keyword{attribute}
|