1 | /*! |
---|
2 | \page userguide_pdf BDM Use - Probability density functions |
---|
3 | |
---|
4 | This section serves as an introduction to basic elements of the BDM: probability density functions, pdfs. |
---|
5 | |
---|
6 | The tutorial is written in for the BDM toolbox, if you are interested in use of C++ classes see class reference pages. |
---|
7 | |
---|
8 | \section ugpdf_create Creation of pdfs |
---|
9 | |
---|
10 | In BDM toolbox, a pdf is specified by matlab structure, e.g. |
---|
11 | \code |
---|
12 | Nab.class= 'enorm<ldmat>'; |
---|
13 | Nab.mu = [3,2]; |
---|
14 | Nab.R = eye(2); |
---|
15 | Nab.rv = RV({'a','b'}); |
---|
16 | \endcode |
---|
17 | Which encodes information \f$ f(a,b) = \mathcal{N}(mu=[3;2],R=eye(2))\f$. |
---|
18 | \li the keyword "enorm\<ldmat\>" means "Unconditional Normal distribution with covariance matrix in L'DL form", othe rpossibilities are: |
---|
19 | "enorm\<chmat\>" for Choleski decomposition, and "enorm\<fsqmat\>" for full (non-decomposed) matrices. |
---|
20 | \li mu denotes mean value |
---|
21 | \li R denotes variance (written in full matrix regardles of the used decomposition), |
---|
22 | \li rv denotes names assigned to the variables. RV is more complicated structure, but here it is sufficient to use default values. |
---|
23 | \li rv is an optional parameter, some operations do not need it, such as sampling or evaluation of moments |
---|
24 | |
---|
25 | For generating samples try: |
---|
26 | \code |
---|
27 | >> M=epdf_sample_mat(Nab,4); |
---|
28 | \endcode |
---|
29 | which should return 4 samples of the Nab distribution. |
---|
30 | |
---|
31 | For evaluation of mean and variance: |
---|
32 | \code |
---|
33 | >> Nab_m=epdf_mean(Nab); |
---|
34 | >> Nab_v=epdf_variance(Nab); |
---|
35 | \endcode |
---|
36 | |
---|
37 | Other distributions are created analogously, see ??? for their list and parameters??? |
---|
38 | Sampling and evaluation of moments are done by exactly the same functions as for the normal density. |
---|
39 | |
---|
40 | \section ug_pdf_marg Marginalization and conditioning |
---|
41 | |
---|
42 | Basic operations on pdfs are marginalization and conditioning, which are provided by mex functions edpf_marginal and epdf_condition, respectively. |
---|
43 | |
---|
44 | This operation does require the rv parametetr to be fully specified. If it isn't, it will fail with the following message |
---|
45 | \code |
---|
46 | --- fill in the message ---- |
---|
47 | \endcode |
---|
48 | |
---|
49 | If rv is correctly specified, marginal pdf of Nab on variable "a" is obtained by: |
---|
50 | \code |
---|
51 | Na = epdf_marginal(Nab,RV('a')); |
---|
52 | \endcode |
---|
53 | |
---|
54 | Similarly for conditional: |
---|
55 | \code |
---|
56 | Na_b = epdf_condition(Nab,RV('a')); |
---|
57 | Nb_a = epdf_condition(Nab,RV('b')); |
---|
58 | \endcode |
---|
59 | |
---|
60 | \section ugpdf_cond Conditioned densities |
---|
61 | Note that the result of conditioning is of type "mlnorm\<ldmat\>" which is a special case of pdf with variables in condition, specifically |
---|
62 | \f[ f(a|b) = \mathcal{N}(A*b+const, R)\f] |
---|
63 | i.e. "Normal distributed pdf with mean value as linear function of variable b". |
---|
64 | |
---|
65 | This type of pdfs differ from previously used type is the way of use. For example, it is not possible to sample directly form such density, |
---|
66 | it is necessary to specify what is the value of variable in condition. |
---|
67 | |
---|
68 | That is why a different function is used: |
---|
69 | \code |
---|
70 | Smp=pdf_samplecond_mat(Na_b, 10) |
---|
71 | \endcode |
---|
72 | |
---|
73 | The conditioned and Unconditioned pdf may be combined together in the chain rule. The chain rule can be of two different types: conditioned or unconditioned, i.e.: |
---|
74 | \f[ f(a,b)=f(a|b)f(b), OR, f(a,b|c)=f(a|b)f(b|c)\f] |
---|
75 | Thus it is differently encoded as: |
---|
76 | \code |
---|
77 | fab.class = 'eprod'; |
---|
78 | fab.pdfs = {fa_b, fb}; |
---|
79 | |
---|
80 | fab_c.class = 'mprod'; |
---|
81 | fab_c.pdfs = {fa_b, fb_c}; |
---|
82 | \endcode |
---|
83 | |
---|
84 | |
---|
85 | |
---|
86 | |
---|
87 | |
---|
88 | |
---|
89 | |
---|
90 | */ |
---|