Generation of random rotation matrix
rnd_rotmat_xyz()
##---- Should be DIRECTLY executable !! ---- ##-- ==> Define data, use random, ##-- or do help(data=index) for the standard data sets. ## The function is currently defined as function () { alpha_ <- runif(1, -pi, pi) beta_ <- runif(1, -pi, pi) gamma_ <- runif(1, -pi, pi) rotmat_xyz(alpha_, beta_, gamma_) }#> function () #> { #> alpha_ <- runif(1, -pi, pi) #> beta_ <- runif(1, -pi, pi) #> gamma_ <- runif(1, -pi, pi) #> rotmat_xyz(alpha_, beta_, gamma_) #> } #> <environment: 0x1114412e8>