transform_xyz {conmolfields}R Documentation

transform_xyz

Description

transform_xyz

Usage

transform_xyz(xyz, R, T)

Arguments

xyz
R
T

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 (xyz, R, T) 
{
    n <- dim(xyz)[2]
    ones <- double(n) + 1
    R %*% xyz + T %*% ones
  }

[Package conmolfields version 0.0-19 Index]