mvt_mmf_task | R Documentation |
A function that will generate the task list for problem of estimating parameters of a multivariate t distribution. We would simulate 1000 2-dimensional t distribution data with mean 0 and Σ = diag(0.1,1). And the base fixed point algorithm is MMF in Hasannasab (2021).
mvt_mmf_task(df)
df |
Degree of freedom for the t-distribution |
A list containing all components needed for benchmarking the problem
initfn |
Parameter random initializing function |
fixptfn |
Updating function for the fixed point iteration problem |
objfn |
Function calculating the objective value for current parameter |
... |
Other arguments required in functions above |
Hasannasab M, Hertrich J, Laus F, Steidl G (2021). Alternatives to the EM algorithm for ML estimation of location, scatter matrix, and degree of freedom of the Student t distribution. Numerical Algorithms, 87(1): 77–118.
## Not run: set.seed(54321) problem = mvt_mmf_task(df=25) benchmark( problem, algorithm=c("raw", "squarem", "daarem", "pem", "qn", "nes"), ntimes = 200 ) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.