transform_xyz: transform_xyz

Description Usage Arguments Examples

Description

transform_xyz

Usage

1
transform_xyz(xyz, R, T)

Arguments

xyz
R
T

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
##---- 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 (xyz, R, T) 
{
    n <- dim(xyz)[2]
    ones <- double(n) + 1
    R %*% xyz + T %*% ones
  }

conmolfields documentation built on May 2, 2019, 4:18 p.m.