<< NL_F_AutoCorrelationPlot NL_F: Function NL_F_Bisection >>

NARVAL >> NL_F: Function > NL_F_Binning

NL_F_Binning

Group pairs of locations into bins (distance selection).

Calling Sequence

[PD,AD,SV,ASV,IPD,IP] = NL_F_Binning(K,L,D,S,I)

Arguments

X :

x-coordinate of the measurements.

Y :

y-coordinate of the measurements.

Z :

Value of the measurements.

K :

Index vector (head).

L :

Index vector (tail).

D :

Distance vector.

S :

Semi-variance vector.

I :

Interval vector.

PD :

Pair distance vector.

AD :

Average distance vector.

SV :

Semi-variance vector.

ASV :

Average semi-variance vector.

IPD :

Index pair distance vector.

IP :

Couple index from I.

Description

NL_F_Binning groups pairs of locations into bins (distance selection). A bin is a specified range of distance. I defines each interval. For I=[i1 i2 i3 i4 ...], the first bin is ]i1:i2], the second bin ]i2:i3], the third bin ]i3:i4], and so on.

Examples

x=[1,3,1,4,5];
y=[5,4,3,5,1];
z=[100,105,105,100,115];
[k,l,d,s]=NL_F_SemiVariogram(x,y,z);//computation of the semi-variogram
ib=[1 2 3 4 5];
[PD,AD,SV,ASV,IPD,IP]=NL_F_Binning(k,l,d,s,ib);//application of NL_F_Binning

Report an issue
<< NL_F_AutoCorrelationPlot NL_F: Function NL_F_Bisection >>