rmse4xyz: rmse4xyz

Description Usage Arguments Examples

Description

rmse4xyz

Usage

1
rmse4xyz(xyz1, xyz2)

Arguments

xyz1
xyz2

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- 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 (xyz1, xyz2) 
{
    xyz_d2 <- (xyz1 - xyz2)^2
    rss <- sum(colSums(xyz_d2))
    N <- dim(xyz1)[2]
    sqrt(rss/N)
  }

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