File: quadmap.Rd

package info (click to toggle)
tseries 0.10-59-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: fortran: 1,405; ansic: 759; makefile: 67; f90: 21
file content (23 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (12)
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}