https://github.com/cran/pracma
Raw File
Tip revision: 26e049d70b4a1c237987e260cba68f6a9413736c authored by Hans W. Borchers on 09 April 2019, 04:10:07 UTC
version 2.2.5
Tip revision: 26e049d
find.Rd
\name{finds}
\alias{finds}
\title{find function (Matlab Style)}
\description{
  Finds indices of nonzero elements.
}
\usage{
finds(v)
}
\arguments{
  \item{v}{logical or numeric vector or array}
}
\details{
  Finds indices of true or nonzero elements of argument \code{v};
  can be used with a logical expression.
}
\value{
  Indices of elements matching the expression \code{x}.
}
\examples{
finds(-3:3 >= 0)
finds(c(0, 1, 0, 2, 3))
}
\keyword{logic}

back to top