File: quadmap.Rd

package info (click to toggle)
tseries 0.10-22-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 880 kB
  • ctags: 274
  • sloc: fortran: 1,340; ansic: 706; makefile: 66
file content (23 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
\name{quadmap}
\alias{quadmap}
\title{Quadratic Map (Logistic Equation)}
\description{
  Computes the quadratic map simulation.
}
\usage{
quadmap(xi = 0.2, a = 4.0, n = 1000)
}
\arguments{
  \item{xi}{the initial value for the iteration.}
  \item{a}{the quadratic map parameter.}
  \item{n}{the length of the simulated series.}
}
\value{
  A vector containing the simulated series.
}
\author{A. Trapletti}
\examples{
x <- quadmap()
acf(x, 10)
}
\keyword{ts}