[Yuima-commits] r35 - pkg/yuima/man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Nov 25 17:18:35 CET 2009
Author: iacus
Date: 2009-11-25 17:18:35 +0100 (Wed, 25 Nov 2009)
New Revision: 35
Modified:
pkg/yuima/man/setSampling.Rd
pkg/yuima/man/simulate.Rd
pkg/yuima/man/yuima.sampling-class.Rd
Log:
version which passes R CMD CHECK
Modified: pkg/yuima/man/setSampling.Rd
===================================================================
--- pkg/yuima/man/setSampling.Rd 2009-11-25 14:14:39 UTC (rev 34)
+++ pkg/yuima/man/setSampling.Rd 2009-11-25 16:18:35 UTC (rev 35)
@@ -8,15 +8,16 @@
\code{setSampling} is a constructor for \code{sampling} class.
}
\usage{
- setSampling(Terminal, division, Initial=0, grid=as.numeric(NULL), random=FALSE)
+ setSampling(Initial = 0, Terminal = 1, division = 100, delta =
+ 0.1, grid = as.numeric(NULL), random = FALSE)
}
\arguments{
- %%\item{x}{an object of class \code{yuima}, \code{yuima.model} or \code{yuima.data}}
+ \item{Initial}{Initial}
\item{Terminal}{Terminal}
\item{division}{division}
- \item{Initial}{Initial}
+ \item{delta}{mesh size in case of regular grid}
\item{grid}{a grid of times for the simulation, possibly empty}
- \item{random}{specify if it is erandom sampling}
+ \item{random}{specify if it is random sampling}
}
\details{
class \code{sampling} has two slots,
Modified: pkg/yuima/man/simulate.Rd
===================================================================
--- pkg/yuima/man/simulate.Rd 2009-11-25 14:14:39 UTC (rev 34)
+++ pkg/yuima/man/simulate.Rd 2009-11-25 16:18:35 UTC (rev 35)
@@ -3,7 +3,8 @@
\title{Simulator function for multi-dimensional stochastic processes}
\description{Simulate multi-dimensional stochastic processes.}
\usage{
-simulate(object, nsim, seed, xinit, true.parameter, space.discretized, increment.W, increment.L)
+simulate(object, nsim, seed, xinit, true.parameter, space.discretized = FALSE,
+ increment.W = NULL, increment.L = NULL, methodfGn = "Cholesky")
}
\arguments{
\item{object}{an \code{yuima} object.}
@@ -15,6 +16,7 @@
\item{increment.L}{to specify Levy increment for each time tics in advance.}
\item{nsim}{Not used yet. Included only to match the standard genenirc in package \code{stats}.}
\item{seed}{Not used yet. Included only to match the standard genenirc in package \code{stats}.}
+ \item{methodfGn}{simulation methods for fractional Gaussian noise.}
}
\details{
\code{simulate} is a function to solve SDE using the Euler-Maruyama
Modified: pkg/yuima/man/yuima.sampling-class.Rd
===================================================================
--- pkg/yuima/man/yuima.sampling-class.Rd 2009-11-25 14:14:39 UTC (rev 34)
+++ pkg/yuima/man/yuima.sampling-class.Rd 2009-11-25 16:18:35 UTC (rev 35)
@@ -8,11 +8,13 @@
}
\section{Slots}{
\describe{
- \item{\code{Terminal}:}{Horizon of the stochastic processes.}
- \item{\code{division}:}{Time division for the data and/or model.}
- \item{\code{Initial}:}{Initial time of the data and/or model.}
- \item{\code{grid}:}{a grid of time points on which data are simulated.}
- \item{\code{random}:}{whether simulation consists of random times.}
+ \item{Initial}{Initial time of the data and/or model.}
+ \item{Terminal}{Horizon of the stochastic processes.}
+ \item{division}{Time division for the data and/or model.}
+ \item{grid}{a grid of time points on which data are simulated.}
+ \item{random}{whether simulation consists of random times.}
+ \item{delta}{the mesh size in case of regular sampling.}
+ \item{regular}{whether the ampling is regular. For internal use only.}
}
}
\author{YUIMA Project}
More information about the Yuima-commits
mailing list