https://github.com/cran/fda
Raw File
Tip revision: 6565ab631c5ce969b5964df159080bcbea9087a7 authored by J. O. Ramsay on 13 April 2007, 00:00:00 UTC
version 1.1.8
Tip revision: 6565ab6
zerofind.Rd
\name{zerofind}
\alias{zerofind}
\title{
  Does the range of the input contain 0?  
}
\description{
  Returns TRUE if range of the argument includes 0 and FALSES if not.  
}
\usage{
  zerofind(fmat)
}
\arguments{
  \item{fmat}{
    An object from which 'range' returns two numbers.  
  }
}
\value{
  A logical value TRUE or FALSE.  
}
\details{
}
\seealso{
\code{\link{range}}
}
\examples{
zerofind(1:5)
# FALSE
zerofind(0:3)
# TRUE 
}
% docclass is function
\keyword{logic}
back to top