ajout fonction caractéristique processus

This commit is contained in:
François Pelletier 2014-02-13 23:46:32 -05:00
parent 6572808b1b
commit 1e20a6a809
5 changed files with 165 additions and 0 deletions

31
man/cfLM.Rd Normal file
View file

@ -0,0 +1,31 @@
\name{cfLM}
\alias{cfLM}
\title{Characteristic function of Laplace motion}
\usage{
cfLM(u, param, time, type = "mu", log = FALSE, start = 0)
}
\arguments{
\item{u}{Transform variate}
\item{param}{Parameter vector}
\item{time}{Time of the process}
\item{type}{Choose between "mu" or "kappa"
parametrization}
\item{log}{Logical for log-parameters}
\item{start}{Starting value of the process}
}
\value{
Characteristic function value at point u for given
parameter vector
}
\description{
Characteristic function of Laplace motion
}
\author{
Francois Pelletier
}

26
man/scaleGAL.Rd Normal file
View file

@ -0,0 +1,26 @@
\name{scaleGAL}
\alias{scaleGAL}
\title{Apply scale and location transform to the GAL distribution}
\usage{
scaleGAL(param, type = "kappa", location, scale)
}
\arguments{
\item{param}{Parameter vector}
\item{type}{Choose between "mu" or "kappa"
parametrization}
\item{location}{Location shift (unitary)}
\item{scale}{Scale shift (in standard deviations)}
}
\value{
The transformed parameter vector
}
\description{
Apply scale and location transform to the GAL distribution
}
\author{
Francois Pelletier
}

25
man/startparamGAL.Rd Normal file
View file

@ -0,0 +1,25 @@
\name{startparamGAL}
\alias{startparamGAL}
\title{Method of moments with a twist for GAL distribution}
\usage{
startparamGAL(data, type = "mu", log = FALSE)
}
\arguments{
\item{data}{Sample}
\item{type}{Choose between "mu" or "kappa"
parametrization}
\item{log}{Logical for log-parameters}
}
\value{
a vector of estimated parameters
}
\description{
Estimating the parameters of GAL distribution using a twist
on method of moments by Seneta (2004)
}
\author{
Francois Pelletier
}