distanceInnerProduct method

ColumnVectorDistance<Vector> distanceInnerProduct(
  1. Vector other
)
inherited

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,
  ));
}