powered by
Return a \((3 \times 3)\) skew symmetric matrix from three parameters \((\lambda, \mu, \tau)\).
skewSymmetricMatrix(p)
A \((3 \times 3)\) skew symmetric matrix, with :
\(A_{1,2} = -A_{2,1} = \tau\)
\(-A_{1,3} = A_{3,1} = \mu\)
\(A_{3,2} = -A_{2,3} = \lambda\)
a \((3 \times 1)\) vector \((\lambda, \mu, \tau)\)
p <- c(3,7,11) skewSymmetricMatrix(p)
Run the code above in your browser using DataLab