Package | Description |
---|---|
de.lmu.ifi.dbs.elki.data |
Basic classes for different data types, database object types and label types.
|
de.lmu.ifi.dbs.elki.data.type |
Data type information, also used for type restrictions.
|
Modifier and Type | Field and Description |
---|---|
static ByteBufferSerializer<FloatVector> |
FloatVector.BYTE_SERIALIZER
Serializer for up to 127 dimensions.
|
static ByteBufferSerializer<FloatVector> |
FloatVector.SHORT_SERIALIZER
Serializer for up to 2^15-1 dimensions.
|
static ByteBufferSerializer<FloatVector> |
FloatVector.VARIABLE_SERIALIZER
Serializer using varint encoding.
|
Modifier and Type | Method and Description |
---|---|
FloatVector |
FloatVector.SmallSerializer.fromByteBuffer(ByteBuffer buffer) |
FloatVector |
FloatVector.ShortSerializer.fromByteBuffer(ByteBuffer buffer) |
FloatVector |
FloatVector.VariableSerializer.fromByteBuffer(ByteBuffer buffer) |
<A> FloatVector |
FloatVector.Factory.newFeatureVector(A array,
ArrayAdapter<? extends Number,A> adapter) |
<A> FloatVector |
FloatVector.Factory.newNumberVector(A array,
NumberArrayAdapter<?,? super A> adapter) |
Modifier and Type | Method and Description |
---|---|
ByteBufferSerializer<FloatVector> |
FloatVector.Factory.getDefaultSerializer() |
Class<? super FloatVector> |
FloatVector.Factory.getRestrictionClass() |
Modifier and Type | Method and Description |
---|---|
int |
FloatVector.SmallSerializer.getByteSize(FloatVector vec) |
int |
FloatVector.ShortSerializer.getByteSize(FloatVector vec) |
int |
FloatVector.VariableSerializer.getByteSize(FloatVector vec) |
void |
FloatVector.SmallSerializer.toByteBuffer(ByteBuffer buffer,
FloatVector vec) |
void |
FloatVector.ShortSerializer.toByteBuffer(ByteBuffer buffer,
FloatVector vec) |
void |
FloatVector.VariableSerializer.toByteBuffer(ByteBuffer buffer,
FloatVector vec) |
Modifier and Type | Field and Description |
---|---|
static VectorFieldTypeInformation<FloatVector> |
TypeUtil.FLOAT_VECTOR_FIELD
Input type for algorithms that require number vector fields.
|
Copyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.