https://github.com/cran/fda
Raw File
Tip revision: 229f7206c9196b18bb88d6ee7c3c775e8b28e5d3 authored by J. O. Ramsay on 01 June 2009, 00:00:00 UTC
version 2.1.3
Tip revision: 229f720
wtcheck.Rd
\name{wtcheck}
\alias{wtcheck}
\title{
  Check a vector of weights
}
\description{
  Throws an error if \code{wtvec} is not \code{n} positive numbers, and
  return \code{wtvec} (stripped of any \code{dim} atrribute)
}
\usage{
wtcheck(n, wtvec)
}
\arguments{
  \item{n}{ the required length of \code{wtvec} }
  \item{wtvec}{ an object to be checked }
}
\value{
  a vector of \code{n} positive numbers
}
%\seealso{}
\examples{
wtcheck(3, 1:3)

wtcheck(2, matrix(1:2, 2))

}
% docclass is function
\keyword{logic}
back to top