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 52 53 54 55 56
|
\name{Reals-class}
\docType{class}
\alias{Reals}
\alias{Reals-class}
\alias{initialize,Reals-method}
\title{Class "Reals" }
\description{ Particular case of a one-dimensional Euclidean Space }
\section{Objects from the Class}{
Objects could theoretically be created by calls of the form \code{new("Reals", dimension, name)}.
Usually an object of this class is not needed on its own. It is generated automatically when a univariate absolutly
continuous distribution is instantiated.
}
\section{Slots}{
\describe{
\item{\code{dimension}}{Object of class \code{"character"}: the dimension of the space, by default = 1 }
\item{\code{name}}{Object of class \code{"character"}: the name of the space, by default = "Real Space"}
}
}
\usage{Reals()}
\section{Extends}{
Class \code{"EuclideanSpace"}, directly.\cr
Class \code{"rSpace"}, by class \code{"EuclideanSpace"}.
}
\section{Methods}{
\describe{
\item{initialize}{\code{signature(.Object = "Reals")}: initialize method }
}
}
\author{
Thomas Stabla \email{statho3@web.de},\cr
Florian Camphausen \email{fcampi@gmx.de},\cr
Peter Ruckdeschel \email{peter.ruckdeschel@uni-oldenburg.de},\cr
Matthias Kohl \email{Matthias.Kohl@stamats.de}
}
\seealso{
\code{\link{EuclideanSpace-class}}
\code{\link{Naturals-class}}
\code{\link{AbscontDistribution-class}}
}
\examples{
R <- Reals()
liesIn(R,c(0,0)) # FALSE
}
\keyword{distribution}
\concept{space}
\concept{set}
\concept{S4 space class}
|