https://github.com/cran/pracma
Raw File
Tip revision: c7b20449f057481c4a6908b43e23cbe9884eb57b authored by Hans W. Borchers on 14 January 2014, 00:00:00 UTC
version 1.6.1
Tip revision: c7b2044
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