View source: R/f07.normal.code.r
mn4joint1condi | R Documentation |
returns the expectation and variance of the multinormal normal distribution defined through a marginal subcomponent and a conditional distribution.
mn4joint1condi(lmar, lcon)
lmar |
list defining the distribution of the marginal part with
elements |
lcon |
list defining the distribution of the conditional part (see the Details section). |
The conditional distribution is defined with a list with elements
a
for the constant part of the expectation; b
for the
regression coefficient part of the expectation; and S
for the
residual variance matrix.
A list with elements:
mu |
The expectation vector. |
gamma |
The joint variance matrix. |
that is a /mn/ object.
lcon <- list(a=c(D=2, E=4),
b=matrix(1:6, 2, dimnames=list(LETTERS[4:5],
LETTERS[1:3])),
S=matrix(c(1, 1, 1, 2), 2));
print8mn(mn4joint1condi(rbmn0mn.01, lcon));
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.