parpdist: Partools Apps

Description Usage Arguments Details Value Author(s) Examples

View source: R/SnowApps.R

Description

General parallel applications.

Usage

1
parpdist(x,y,cls)

Arguments

cls

A cluster run under the parallel package.

x

A data matrix

y

A data matrix

Details

Parallel wrapper for pdist from package of the same name. Finds all the distances from rows in x to rows in y.

Value

Object of type "pdist".

Author(s)

Norm Matloff

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# set up 'parallel' cluster
cls <- makeCluster(2)
setclsinfo(cls)

x <- matrix(runif(20),nrow=5)
y <- matrix(runif(32),nrow=8)
# 2 calls should have identical resultsW
pdist(x,y,cls)@dist
parpdist(x,y,cls)@dist

stopCluster(cls)

partools documentation built on May 2, 2019, 5:14 a.m.