choclo.point.kernel_uu

Contents

choclo.point.kernel_uu#

choclo.point.kernel_uu(easting_p, northing_p, upward_p, easting_q, northing_q, upward_q, distance)[source]#

Second derivative of the inverse of the distance along upward-upward.

Important

The coordinates of the two points must be in Cartesian coordinates and have the same units.

Parameters:
easting_p, northing_p, upward_pfloat

Easting, northing and upward coordinates of point p.

easting_q, northing_q, upward_qfloat

Easting, northing and upward coordinates of point q.

distancefloat

Euclidean distance between points p and q.

Returns:
kernelfloat

Value of the kernel function.

Notes

Given two points p=(xp,yp,zp) and q=(xq,yq,zq) defined in a Cartesian coordinate system, compute the following kernel function:

kzz(p,q)=2z2(1pq2)=3(zpzq)2pq251pq23

where 2 refer to the L2 norm (the Euclidean distance between p and q).