View source: R/rmatrixfisher.R
Simulation from a Matrix Fisher distribution on SO(3) | R Documentation |
It simulates random samples (rotation matrices) from a Matrix Fisher distribution with any given parameter matrix, F (3x3).
rmatrixfisher(n, F)
n |
the sample size. |
F |
An arbitrary 3x3 matrix. |
Firstly corresponding Bingham parameter A is determined for a given Matrix Fisher parameter F using John Kent et al.'s (2013) algorithm and then Bingham samples for parameter A are generated using rbingham code. Finally convert Bingham samples to Matrix Fisher samples according to the Kent (2013) transformation.
An array with simulated rotation matrices.
Anamul Sajib and Chris Fallaize.
R implementation and documentation: Anamul Sajib <sajibstat@du.ac.bd> and Chris Fallaize.
Kent J. T., Ganeiber A. M. and Mardia K. V. (2018). A new unified approach for the simulation of a wide class of directional distributions. Journal of Computational and Graphical Statistics, 27(2): 291–301.
Kent J.T., Ganeiber A.M. and Mardia K.V. (2013). A new method to simulate the Bingham and related distributions in directional data analysis with applications. http://arxiv.org/pdf/1310.8110v1.pdf
matrixfisher.mle
F <- matrix( c(85, 11, 41, 78, 39, 60, 43, 64, 48), ncol = 3) / 10 ### An arbitrary F matrix
a <- rmatrixfisher(10, F)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.