Check visually whether matrix Fisher samples is correctly generated or not | R Documentation |
It plots the log probability trace of matrix Fisher distribution which should close to the maximum value of the logarithm of matrix Fisher distribution, if samples are correctly generated.
visual.check(x, Fa)
x |
The simulated data. An array with at least 2 3x3 matrices. |
Fa |
An arbitrary 3x3 matrix represents the parameter matrix of this distribution. |
For a given parameter matrix Fa, maximum value of the logarithm of matrix Fisher distribution is calculated via
the form of singular value decomposition of Fa = U \Lambda V^T
which is tr(\Lambda)
. Multiply the last
column of U
by -1
and replace small eigenvalue, say, \lambda_3
by -\lambda_3
if | UV^T| = -1
.
A plot which shows log probability trace of matrix Fisher distribution. The values are also returned.
Anamul Sajib.
R implementation and documentation: Anamul Sajib <sajibstat@du.ac.bd>.
Habeck M. (2009). Generation of three-dimensional random rotations in fitting and matching problems. Computational Statistics, 24(4):719–731.
Fa <- matrix( c(85, 11, 41, 78, 39, 60, 43, 64, 48), ncol = 3) / 10
x <- rmatrixfisher(1000, Fa)
a <- visual.check(x, Fa)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.