scipy.spatial.Delaunay.transform#
- property Delaunay.transform#
Affine transform from
x
to the barycentric coordinatesc
.- Type:
ndarray of double, shape (nsimplex, ndim+1, ndim)
This is defined by:
T c = x - r
At vertex
j
,c_j = 1
and the other coordinates zero.For simplex
i
,transform[i,:ndim,:ndim]
contains inverse of the matrixT
, andtransform[i,ndim,:]
contains the vectorr
.