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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
\name{RMsign}
\alias{RMsign}
\alias{RRsign}
\title{Random sign}
\description{
\command{RMsign} defines a random sign. It can be used as part of the
model definition of a Poisson field.
}
\usage{
RMsign(phi, p)
}
\arguments{
\item{phi}{shape function of class \code{\link[=RMmodel-class]{RMmodel}}}
\item{p}{probability of keeping the sign}
}
\details{
\command{RMsign} changes the sign of the shape function \code{phi}
with probability \code{1-p} and keeps it otherwise.
}
\value{
\command{\link{RMsign}} returns an object of class \code{\link[=RMmodel-class]{RMmodel}}.
}
\note{
Random univariate or multivariate objects usually start with \code{RR}, not with \code{RM}.
This is an exception here, as it operates on shape functions.
}
\me
\seealso{
\command{\link{RMmodel}},
\link{RR}.
}
\keyword{spatial}
\keyword{models}
\examples{\dontshow{StartExample()}
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
## RFoptions(seed=NA) to make them all random again
model <- RPpoisson(RMsign(RMtent(), p=0.8))
x <- seq(0, 10, 0.02)
plot(RFsimulate(model, x=x))
\dontshow{FinalizeExample()}}
|