File: c.circular.Rd

package info (click to toggle)
r-cran-circular 0.5-1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,492 kB
  • sloc: ansic: 464; fortran: 69; sh: 13; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 867 bytes parent folder | download | duplicates (3)
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
30
31
32
33
34
35
\name{c.circular}
\alias{c.circular}

\title{A method for circular object, which combines its arguments}
\description{
A method for circular object, which combines its arguments
}

\usage{
\method{c}{circular}(..., recursive = FALSE)
}

\arguments{
  \item{\dots}{vectors, the first of which of class \code{circular}.}
  \item{recursive}{logical. If 'recursive=TRUE', the function recursively
          descends through lists combining all their elements into a
          vector.
}
}

\author{Claudio Agostinelli}

\seealso{\code{\link{c}} }

\examples{

x <- rvonmises(10, circular(0), 10)
y <- rvonmises(10, circular(0), 10, control.circular=list(units="degrees"))
z <- runif(10, 0, 20) # here you do not use circular properties, 
#####but you mean it is measured in degrees
c(x, y, z) # While y is converted in radians, z is treated as it was!

}
\keyword{manip}