matrix_A | R Documentation |
Taylor expansion implies that vectors of derivatives of
\log(\hat{M}_X(t))
can be approximated
by a linear combination of vectors of derivatives of \hat{M}_X(t)
.
matrix_A
results the corresponding
linear combinations.
mt3_matrix_A(t)
mt4_matrix_A(t)
t |
vector of |
mt3_matrix_A
returns coefficient matrix relating to the use
of third derivatives.
mt4_matrix_A
returns coefficient matrix relating to the
use of fourth derivatives.
p <- 3
t <- rep(.2, p)
A3 <- mt3_matrix_A(t)
dim(A3)
A3[1:5, 1:5]
A4 <- mt4_matrix_A(t)
dim(A4)
A4[1:5, 1:5]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.