1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
\name{[.circular}
\title{Extract or Replace Parts of a Circular Object}
\alias{[.circular}
\description{
Operators act on vectors and matrices to extract or
replace subsets, methods for Circular Data.
}
\usage{
\method{[}{circular}(x, i, \dots)
}
\arguments{
\item{x}{object from which to extract elements.}
\item{i, \dots}{elements to extract or replace.}
}
\author{Claudio Agostinelli}
\examples{
x <- circular(matrix(rwrappednormal(n=100, mu=circular(0)), nrow=5))
dim(x)
x[1,]
x[,1]
x[,1, drop=FALSE]
}
\keyword{array}
|