MongoDB\BSON\Binary::fromVector

(mongodb >=2.2.0)

MongoDB\BSON\Binary::fromVectorCreates a new binary with subtype MongoDB\BSON\Binary::SUBTYPE_VECTOR from the given array and vector type

Beschreibung

final public static MongoDB\BSON\Binary::fromVector(array $vector, MongoDB\BSON\VectorType $vectorType): MongoDB\BSON\Binary

Parameter-Liste

vector (array)

An array of values representing the vector data. The type of each value must match the type indicated by the vectorType parameter:

  • for MongoDB\BSON\VectorType::Float32, each value must be a float
  • for MongoDB\BSON\VectorType::Int8, each value must be an 8-bit int, i.e. from -127 to 128
  • for MongoDB\BSON\VectorType::PackedBit, each value must be a bool or 1-bit int, i.e. 0 or 1

vectorType (MongoDB\BSON\VectorType)

The vector data type.

Rückgabewerte

Returns a new Binary with subtype MongoDB\BSON\Binary::SUBTYPE_VECTOR.

Fehler/Exceptions

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top