distmatrix {CensSpatial} | R Documentation |
Distance matrix
Description
It computes the euclidean distance matrix for a set of coordinates.
Usage
distmatrix(coords)
Arguments
coords |
2D spatial coordinates. |
Value
dist |
symetric matrix of distances between points. |
Author(s)
Alejandro Ordonez <<ordonezjosealejandro@gmail.com>>, Victor H. Lachos <<hlachos@ime.unicamp.br>> and Christian E. Galarza <<cgalarza88@gmail.com>>
Maintainer: Alejandro Ordonez <<ordonezjosealejandro@gmail.com>>
References
Diggle, P. & Ribeiro, P. (2007). Model-Based Geostatistics. Springer Series in Statistics.
See Also
Examples
n<-200
n1=100
####Simulating spatial coordinates##
r1=sample(seq(1,30,length=400),n+n1)
r2=sample(seq(1,30,length=400),n+n1)
coords=cbind(r1,r2)
H=distmatrix(coords)
[Package CensSpatial version 3.6 Index]