Learn R Programming

RFOC (version 3.4-10)

forcerighthand: Force Right-Hand System

Description

Force Right-Hand System

Usage

forcerighthand(U)

Value

matrix

Arguments

U

3 by 3 matrix

Author

Jonathan M. Lees<jonathan.lees@unc.edu>

Details

Flip vectors so they form a right handed system

See Also

testrightHAND

Examples

Run this code

Mtens = c(-0.412, 0.084, 0.328 ,0.398, -1.239, 1.058)
M1 = matrix(c(Mtens[1], Mtens[4], Mtens[5], Mtens[4], Mtens[2],
Mtens[6], Mtens[5],Mtens[6], Mtens[3]), ncol=3, nrow=3, byrow=TRUE)
E1 = eigen(M1)
testrightHAND(E1$vectors) 

E1$vectors = forcerighthand(E1$vectors) 

testrightHAND(E1$vectors) 


Run the code above in your browser using DataLab