rnd_euler_orth {conmolfields}R Documentation

Generation of random orthogonal rotation matrix

Description

Generation of random orthogonal rotation matrix

Usage

rnd_euler_orth()

Examples

##---- 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 () 
{
    phi <- runif(1, -pi, pi)
    theta <- runif(1, -pi, pi)
    psi <- runif(1, -pi, pi)
    euler_orth(phi, theta, psi)
  }

[Package conmolfields version 0.0-19 Index]