MultivariateDistribution-class {distrEx} | R Documentation |
The class of multivariate distributions. One has at least to
specify the image space of the distribution and a function generating
(pseudo-)random numbers. The slot q
is usually filled with
NULL
for dimensions > 1
.
Objects can be created by calls of the form new("MultivariateDistribution", ...)
.
img
:"rSpace"
.
Image space of the distribution. Usually an object of
class "EuclideanSpace"
.param
:"OptionalParameter"
.
Optional parameter of the multivariate distribution.r
:"function"
:
generates (pseudo-)random numbersd
:"OptionalFunction"
:
optional density functionp
:"OptionalFunction"
:
optional cumulative distribution function q
:"OptionalFunction"
:
optional quantile function
Class "Distribution"
, directly.
signature(object = "MultivariateDistribution", fun = "missing", cond = "missing")
:
expectation of multivariate distributions. The integral is computed
using crude Monte-Carlo integration.signature(object = "MultivariateDistribution", fun = "function", cond = "missing")
:
expectation of fun
under multivariate distributions. The integral
is computed using crude Monte-Carlo integration. signature(object = "MultivariateDistribution")
signature(object = "MultivariateDistribution")
:
not yet implemented.Matthias Kohl robast@gmx.de
# Dirac-measure in (0,0) new("MultivariateDistribution")