distanceInnerProduct method
Computes the inner product distance between this vector column and another vector.
Implementation
ColumnVectorDistance<T> distanceInnerProduct(T other) {
return ColumnVectorDistance<T>(VectorDistanceExpression<T>(
this,
_encodeValueForQuery(other),
VectorDistanceFunction.innerProduct,
));
}