https://github.com/cran/pracma
Raw File
Tip revision: 392ae21a013fb3f518e8f9eb8efb458a55a2eca2 authored by HwB on 09 April 2011, 00:00:00 UTC
version 0.3-0
Tip revision: 392ae21
find.Rd
\name{find}
\alias{find}
\title{Find function (Matlab Style)}
\description{
  Finds indices of nonzero elements.
}
\usage{
find(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{
find(-3:3 >= 0)
find(c(0, 1, 0, 2, 3))
}
\keyword{logic}

back to top