MultivariateDistribution-class    package:distrEx    R Documentation

_M_u_l_t_i_v_a_r_i_a_t_e _D_i_s_t_r_i_b_u_t_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     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'.

_O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s:

     Objects can be created by calls of the form
     'new("MultivariateDistribution", ...)'.

_S_l_o_t_s:

     '_i_m_g': Object of class '"rSpace"'.  Image space of the
          distribution. Usually an object of  class '"EuclideanSpace"'.

     '_p_a_r_a_m': Object of class '"OptionalParameter"'. Optional parameter
          of the multivariate distribution.

     '_r': Object of class '"function"':  generates (pseudo-)random
          numbers

     '_d': Object of class '"OptionalFunction"':  optional density
          function

     '_p': Object of class '"OptionalFunction"':  optional cumulative
          distribution function 

     '_q': Object of class '"OptionalFunction"':  optional quantile
          function 

_E_x_t_e_n_d_s:

     Class '"Distribution"', directly.

_M_e_t_h_o_d_s:

     _s_h_o_w 'signature(object = "MultivariateDistribution")'

     _p_l_o_t 'signature(object = "MultivariateDistribution")': not yet
          implemented.

_A_u_t_h_o_r(_s):

     Matthias Kohl Matthias.Kohl@stamats.de

_S_e_e _A_l_s_o:

     'Distribution-class'

_E_x_a_m_p_l_e_s:

     # Dirac-measure in (0,0)
     new("MultivariateDistribution")

